Special Chars do not display at XML import

Hi there. Here is the situation: I am importing external data
(only text) from a XML file, but when I type a "%" (percentage
char) in XML it does NOT display in the SWF... why ?? What is the
best practice to achieve this ?
Thanks in advance,

One more question: perhaps you know ... I need also to load
external weather infos (but only the text, like "47°F"). I
have been visiting many pages like weather channel, etc but they
seem to offer pre-designed forms, not only the weather forecasts in
numbers and degrees.... I need to achieve it but do not know how...
would you mind on helping me out ? thanx a lot,

Similar Messages

  • Column value & heading is not displaying in xml publisher report

    Hi All,
    All Inventories Value Report - Average Costing Standard report copied to cusoom report. Now in rdf I need to add few column like PO Number, Receipt Number, Supplier Number etc.. for this I need Inventory_item_id & organization_id so that I can create the new data modal. But not able to get the Inventory_item_id & organization_id column display in .xml file. Please look and let me koow the solution.
    SELECT cost_group,
           item,
           category,
           description,
           uom,
           SUM(STKQTY) STKQTY,
           SUM(INTQTY) INTQTY,
           SUM(RCVQTY) RCVQTY,
           SUM(STKVAL) STKVAL,
           SUM(INTVAL) INTVAL,
           SUM(RCVVAL) RCVVAL,
            inventory_item_id,
           organization_id
    FROM(        
    SELECT CCG.cost_group COST_GROUP,
           &P_ITEM_SEG ITEM,
           &P_CAT_SEG CATEGORY,
           MSI.description DESCRIPTION,
           MSI.primary_uom_code UOM,
           ROUND(SUM(CIQT.rollback_qty),:P_Qty_Precision) STKQTY,
           0 INTQTY,
           0 RCVQTY,
           ROUND(
             SUM(CIQT.rollback_qty) *
             DECODE(SUB.asset_inventory,1,CICT.item_cost,0) *
             :pv_exchange_rate/
             :pv_round_unit
           :pv_round_unit STKVAL,
           0 INTVAL,
           0 RCVVAL,
          CIQT.inventory_item_id,
           CIQT.organization_id
    FROM   cst_inv_qty_temp CIQT,
           cst_inv_cost_temp CICT,
           mtl_parameters MP,
           mtl_system_items_vl MSI,
           mtl_categories MC,
           mtl_secondary_inventories SUB,
           cst_cost_groups CCG
    WHERE  CIQT.qty_source in (3,4)
    AND    CICT.cost_source = 1
    AND    CICT.organization_id = CIQT.organization_id
    AND    CICT.inventory_item_id = CIQT.inventory_item_id
    AND    (   MP.primary_cost_method = 1
           OR  CICT.cost_group_id = CIQT.cost_group_id) -- should we split?
    AND    MP.organization_id = CIQT.organization_id
    AND    SUB.organization_id = CIQT.organization_id
    AND    SUB.secondary_inventory_name = CIQT.subinventory_code
    AND    MSI.organization_id = CIQT.organization_id
    AND    MSI.inventory_item_id = CIQT.inventory_item_id
    AND    MC.category_id  = CIQT.category_id
    AND    CCG.cost_group_id = NVL(CIQT.cost_group_id,MP.default_cost_group_id)
    GROUP
    BY     CCG.cost_group,
           &P_ITEM_SEG,
           &P_CAT_SEG,
           MSI.description,
           MSI.primary_uom_code,
           DECODE(SUB.asset_inventory,1,CICT.item_cost,0),
            CIQT.inventory_item_id,
           CIQT.organization_id
    UNION ALL
    SELECT CCG.cost_group COST_GROUP,
           &P_ITEM_SEG ITEM,
           &P_CAT_SEG CATEGORY,
           MSI.description DESCRIPTION,
           MSI.primary_uom_code UOM,
           0 STKQTY,
           ROUND(SUM(CIQT.rollback_qty),:P_Qty_Precision) INTQTY,
           0 RCVQTY,
           0 STKVAL,
           ROUND(
             SUM(CIQT.rollback_qty) *
             CICT.item_cost *
             :pv_exchange_rate/
             :pv_round_unit
           :pv_round_unit INTVAL,
           0 RCVVAL,
            CIQT.inventory_item_id,
           CIQT.organization_id
    FROM   cst_inv_qty_temp CIQT,
           cst_inv_cost_temp CICT,
           mtl_parameters MP,
           mtl_system_items_vl MSI,
           mtl_categories MC,
           cst_cost_groups CCG      
    WHERE  CIQT.qty_source in (6,7)
    AND    CIQT.organization_ID = :P_ORG_ID
    AND    CICT.cost_source = 1
    AND    CICT.organization_id = CIQT.organization_id
    AND    CICT.inventory_item_id = CIQT.inventory_item_id
    AND    (   MP.primary_cost_method = 1
           OR  CICT.cost_group_id = CIQT.cost_group_id) -- should we split?
    AND    MP.organization_id = CIQT.organization_id
    AND    MSI.organization_id = CIQT.organization_id
    AND    MSI.inventory_item_id = CIQT.inventory_item_id
    AND    MC.category_id  = CIQT.category_id
    AND    CCG.cost_group_id = NVL(CIQT.cost_group_id,MP.default_cost_group_id)
    GROUP
    BY     CCG.cost_group,
           &P_ITEM_SEG,
           &P_CAT_SEG,
           MSI.description,
           MSI.primary_uom_code,
           CICT.item_cost,
            CIQT.inventory_item_id,
           CIQT.organization_id
    UNION ALL
    SELECT CCG.cost_group COST_GROUP,
           &P_ITEM_SEG ITEM,
           &P_CAT_SEG CATEGORY,
           MSI.description DESCRIPTION,
           MSI.primary_uom_code UOM,
           0 STKQTY,
           0 INTQTY,
           ROUND(SUM(CIQT.rollback_qty),:P_Qty_Precision) RCVQTY,
           0 STKVAL,
           0 INTVAL,
           ROUND(
             SUM(CIQT.rollback_qty)*
             CICT.item_cost *
             :pv_exchange_rate /
             :pv_round_unit
           :pv_round_unit RCVVAL,
          CIQT.inventory_item_id,
           CIQT.organization_id
    FROM   cst_inv_qty_temp CIQT,
           cst_inv_cost_temp CICT,
           mtl_system_items_vl MSI,
           mtl_categories MC,
           mtl_parameters MP,
           cst_cost_groups CCG
    WHERE  CIQT.qty_source = 9
    AND    CICT.cost_source = 3
    AND    CICT.organization_id = CIQT.organization_id
    AND    CICT.inventory_item_id = CIQT.inventory_item_id
    AND    CICT.rcv_transaction_id = CIQT.rcv_transaction_id
    AND    MSI.organization_id = CIQT.organization_id
    AND    MSI.inventory_item_id = CIQT.inventory_item_id
    AND    MC.category_id  = CIQT.category_id
    AND    MP.organization_id = CIQT.organization_id
    AND    CCG.cost_group_id = NVL(CIQT.cost_group_id,MP.default_cost_group_id)
    GROUP
    BY     CCG.cost_group,
           &P_ITEM_SEG,
           &P_CAT_SEG,
           MSI.description,
           MSI.primary_uom_code,
           CICT.item_cost,
             CIQT.inventory_item_id,
           CIQT.organization_id
    ) TEMP
    GROUP BY cost_group,
           item,
           category,
           description,
           uom,
            inventory_item_id,
           organization_id
    - <CSTRAIVA> 
    - <LIST_G_COST_GROUP> 
    - <G_COST_GROUP> 
    <COST_GROUP>100191</COST_GROUP>  
    - <LIST_G_CATEGORY> 
    - <G_CATEGORY> 
    <CATEGORY>Not Assigned</CATEGORY>  
    - <LIST_G_ITEM> 
    - <G_ITEM> 
    <ITEM>82557653</ITEM>  
    <DESCRIPTION>BEARING LINING (GLACIER 100KSA075)</DESCRIPTION>  
    <UOM>EA</UOM>  
    <STKQTY>6</STKQTY>  
    <STKVAL>38934.7</STKVAL>  
    <RCVQTY>0</RCVQTY>  
    <RCVVAL>0</RCVVAL>  
    <INTQTY>0</INTQTY>  
    <INTVAL>0</INTVAL>  
    <CF_ITEM>82557653</CF_ITEM>  
    <TOTQTY>6</TOTQTY>  
    <TOTVAL>38934.7</TOTVAL>  
    <CF_STKVAL_DSP>38,934.70</CF_STKVAL_DSP>  
    <CF_INTVAL_DSP>0.00</CF_INTVAL_DSP>  
    <CF_RCVVAL_DSP>0.00</CF_RCVVAL_DSP>  
    <CF_TOTVAL_DSP>38,934.70</CF_TOTVAL_DSP>  
    </G_ITEM>
    </LIST_G_ITEM>
    <CF_ORDER />  
    <CF_CATEGORY>Not Assigned.</CF_CATEGORY>  
    <SUMSTKVALPERCATEGORY>38934.7</SUMSTKVALPERCATEGORY>  
    <SUMINTVALPERCATEGORY>0</SUMINTVALPERCATEGORY>  
    <SUMRCVVALPERCATEGORY>0</SUMRCVVALPERCATEGORY>  
    <SUMTOTVALPERCATEGORY>38934.7</SUMTOTVALPERCATEGORY>  
    <CF_SUM_STKVAL_CAT_DSP>38,934.70</CF_SUM_STKVAL_CAT_DSP>  
    <CF_SUM_INTVAL_CAT_DSP>0.00</CF_SUM_INTVAL_CAT_DSP>  
    <CF_SUM_RCVVAL_CAT_DSP>0.00</CF_SUM_RCVVAL_CAT_DSP>  
    <CF_SUM_TOTVAL_CAT_DSP>38,934.70</CF_SUM_TOTVAL_CAT_DSP>  
    </G_CATEGORY>
    </LIST_G_CATEGORY>
    <SUMSTKVALPERCOST_GROUP>38934.7</SUMSTKVALPERCOST_GROUP>  
    <SUMINTVALPERCOST_GROUP>0</SUMINTVALPERCOST_GROUP>  
    <SUMRCVVALPERCOST_GROUP>0</SUMRCVVALPERCOST_GROUP>  
    <SUMTOTVALPERCOST_GROUP>38934.7</SUMTOTVALPERCOST_GROUP>  
    <CF_SUM_STKVAL_CG_DSP>38,934.70</CF_SUM_STKVAL_CG_DSP>  
    <CF_SUM_INTVAL_CG_DSP>0.00</CF_SUM_INTVAL_CG_DSP>  
    <CF_SUM_RCVVAL_CG_DSP>0.00</CF_SUM_RCVVAL_CG_DSP>  
    <CF_SUM_TOTVAL_CG_DSP>38,934.70</CF_SUM_TOTVAL_CG_DSP>  
    </G_COST_GROUP>
    </LIST_G_COST_GROUP>
    <SUMSTKVALPERREPORT>38934.7</SUMSTKVALPERREPORT>  
    <SUMINTVALPERREPORT>0</SUMINTVALPERREPORT>  
    <SUMRCVVALPERREPORT>0</SUMRCVVALPERREPORT>  
    <CS_DUMMY>1</CS_DUMMY>  
    <SUMTOTVALPERREPORT>38934.7</SUMTOTVALPERREPORT>  
    <CF_SUM_STKVAL_REP_DSP>38,934.70</CF_SUM_STKVAL_REP_DSP>  
    <CF_SUM_INTVAL_REP_DSP>0.00</CF_SUM_INTVAL_REP_DSP>  
    <CF_SUM_RCVVAL_REP_DSP>0.00</CF_SUM_RCVVAL_REP_DSP>  
    <CF_SUM_TOTVAL_REP_DSP>38,934.70</CF_SUM_TOTVAL_REP_DSP>  
    </CSTRAIVA>

    Thanks for your reply.
    I did below changes in the CQWP but no luck. Please let me know if any further modification needed.
    Thank you!
            <property name="DataMappingViewFields" type="string">{b9e6f3ae-5632-4b13-b636-9d1a2bd67120},Computed;{543bc2cf-1f30-488e-8f25-6fe3b689d9ac},Image;{94f89715-e097-4e8b-ba79-ea02aa8b7adb},Lookup;{fa564e0f-0c70-4ab9-b863-0177e6ddd247},Text;{33f34208-1553-4361-b3ff-26f5da1ae591},Text;{b7ff04a4-a33a-429a-99bd-0ac5367bd189},User;{37cb0520-3169-4bca-9941-1886a5a73f92},DateTime;{6b2c772c-a130-4814-bfd0-d84efb061e3b},TaxonomyFieldType;{d31655d1-1d5b-4511-95a1-7a09e9b75bf2},User;{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f},DateTime;</property>
            <property name="DataMappings" type="string">Editor:{d31655d1-1d5b-4511-95a1-7a09e9b75bf2},Editor,User;|Actors:|Modified:{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f},Modified,DateTime;|Input:|Title:{fa564e0f-0c70-4ab9-b863-0177e6ddd247},Title,Text;|LinkUrl:{94f89715-e097-4e8b-ba79-ea02aa8b7adb},FileRef,Lookup;|ExpiryDate:{37cb0520-3169-4bca-9941-1886a5a73f92},ExpiryDate,DateTime;|Author:{d31655d1-1d5b-4511-95a1-7a09e9b75bf2},Editor,User;|Approver:{f30275e3-0638-451f-bb1f-b5c74ac432ef},Approver,User;|PreRequisites:|DocumentOwner:{b7ff04a4-a33a-429a-99bd-0ac5367bd189},DocumentOwner,User;|Trigger:|RelatedtoGeneralTopic:{6b2c772c-a130-4814-bfd0-d84efb061e3b},RelatedtoGeneralTopic,TaxonomyFieldType;|OpenInNewWindow:|Frequency:|Image:|Output:|Body:|Locallyvalidfor:{31a5c887-10a3-49ca-afa0-97c5679bbda9},Locallyvalidfor,TaxonomyFieldType;|ProcessOwner:|ShortDescription:{33f34208-1553-4361-b3ff-26f5da1ae591},ShortDescription,Text;|Description:{691b9a4b-512e-4341-b3f1-68914130d5b2},ShortComment,Text;|Created:|LinkToolTip:|Mandatory:|ProcessManager:|ImageUrl:{b9e6f3ae-5632-4b13-b636-9d1a2bd67120},EncodedAbsThumbnailUrl,Computed;{543bc2cf-1f30-488e-8f25-6fe3b689d9ac},PublishingRollupImage,Image;|</property>

  • Certain special characters do not display correctly in Firefox ( font COLOR="#1f1a17" FACE="Symbol" SIZE="3" ¬ /font ). Is there a fix?

    Certain special characters which display correctly in Explorer do not display correctly in Firefox. Example: <font COLOR="#1f1a17" FACE="Symbol" SIZE="3">¬</font>
    Is there a fix?

    The symbol font usually doesn't work in Firefox, a website needs to use an Unicode replacement or an HTML entity to specify such a character.
    See:
    *[https://developer.mozilla.org/en/Mozilla_Web_Developer_FAQ#Why_aren.e2.80.99t_symbol.2fdingbat_fonts_working.3f Why aren’t symbol/dingbat fonts working? - MDC FAQ]
    *http://en.wikipedia.org/wiki/Unicode_symbols
    *http://en.wikibooks.org/wiki/Unicode/Character_reference/2000-2FFF

  • Special Char are not allowing

    Hi all,
    here i am facing the problem while activating the DSO...
    the error was Value " ºu0152Öݱ±u0178©CA1715" from characteristic 0ALLOC_NMBR contains an error
    we have given in RSKC --> ALL_CAPITAL_PLUS_HEX and ALL_CAPITAL also     
    this 0ALLOC_NMBR  is 1 to 1 in mapping transformations...
    Thanks In advance

    Hi all,
    Thank you for all your replies...
    But i need those spcial char's  in the CUBE ,because my Customer wants to see those values in the report level...
    If i select thaose special  char and put it in RSKC..my problem will not resolve...because like that we have somany for example :
    Ë°ÎñŽúÀí·Ñ       
    u0153áת±u0178Ô³ö¿Ú12%Ë°
    u0153áת±u0178ÔÂÏúÏîË°u0153ð 
    u0153áת±u0178ÔÂÏúÏîË°u0153ð 
    ºu0152²£ÍÁµØʹÓ÷Ѡ  
    ŽÖÉŽÊֲᲹ˰     
    ¹úÄÚÔËÊä±£·Ñ     
    Ôu20ACÌá¹úÄÚÔË·Ñ     
    u0152ÆÌá±u0178Ô³ö¿ÚÔË·Ñ 
    ÍÁµØʹÓÃË°       
    u0152u0152Êõ·þÎñ·Ñ   PL  
    09.1.1-6.30ѧ·Ñ  
    help me out...
    Thanks in advance...

  • Special French characters not displaying properly

    Hi:
    I am using Weblogic 9.2, struts 1.2, JDOM,and ejb.
    I read special characters from the properties files using struts but when I assigned it to xml tags(JDOM elements) it is not showing properly in the xml tags.
              Element header = new Element("header");
              while(elementListItor.hasNext())
                   Element child = (Element)elementListItor.next();
                   String name = child.getName();
                   header.addContent(new Element(name).setText("Montant pay?", name)));
                   i++;
    Yours,
    Desperate.

    Hello,
    If you are displaying the report output as a PDF output then you need to make sure that:
    -NLS_LANG is set to French
    -the fonts used in the report are installed on the PC
    -the characters are stored correctly in the database
    -PDF subset is configured
    How to Use Font Subsetting in Reports for PDF Output (Doc ID 207711.1)
    Regards,
    Alex

  • German special Characters ( umlaut) not displaying in WebI

    Hi There,
    i'm working with on BO XI R2 SP3 installed on Solaris.
    I have problems with special german characters(umlaut) like ü, ö, ä. They are not being displayed correctly in Webi; actually they are displayed following this logic ü = u, ö = o, ä = a.
    The problem is that when i'm using a string containing one of those in the filter conditions, the query so generated returns empty results because is not matching the data in the database.
    Is there any way to display umlaut in the report result and in the LOV, as they are in the database?
    Please any suggestion is more than welcomed.
    Pierluca

    Hi,
    Could you please follow the below steps:
    1>     Check if you have international language support pack installed on Bo server. Check if you have Arialuni.ttf under fonts file under Windows directory on BO Server.
    2>     Specify Arialuni.ttf file name in fontaliases.xml under <bo installation>\fonts\
    3>     Connectivity modification
    Oracle 9
    a> Modify oracle.sbo file under
    Windows
    u201C\BOInstalledfolder\dataAccess\RDBMS\connectionServer\oracleu201D
    Under the corresponding target database engine, add the Unicode parameter with the UTF8 value as specified below;
            <DataBase Active="Yes" Name="Oracle 9">
              <Parameter Name="Library">dbd_oci9</Parameter>
              <Parameter Name="Unicode">UTF8</Parameter>
            </DataBase>
    You can do the modification under the DEFAULT section. This applies for all target databases.
    b>     Windows: Modify NLS_LANG setting in Registry
    Under Oracle/HOME0 folder, you can find NLS_LANG definition
    Default setting is(example in UK English):
         ENGLISH_UNITED KINGDOM.WE9ISO8859P 15
    Changed to:
         ENGLISH_UNITED KINGDOM.UTF8
    MS SQL Server 2000
    a>     Modify odbc.sbo file under
    u201C\BOInstalledfolder\dataAccess\RDBMS\connectionServer\odbcu201D
    Under the corresponding target database engine,
    u2022     add the Unicode parameter with the UCS2 value as specified below;
    u2022     Check the Library parameter to set with the correct Unicode library name (See Connection Server release note for more information).
        <DataBase Active="Yes" Name="MS SQL Server 2000">
              <Parameter Name="Family">Microsoft</Parameter>
              <Parameter Name="Version">rdbms_mssqlserverodbc.txt</Parameter>
              <Parameter Name="SQL External File">sqlsrv</Parameter>
              <Parameter Name="SQL Parameter File">sqlsrv</Parameter>
              <Parameter Name="Array Bind Available">True</Parameter>
              <Parameter Name="Library">dbd_wmssql</Parameter>
              <Parameter Name="Unicode">UCS2</Parameter>
              <Parameter Name="Driver Level">31</Parameter>
                </DataBase>
    You can do the modification under the DEFAULT section. This applies for all target databases.
    DB2 UDB
    a>     Modify db2.sbo file under
    u201C\BOInstalledfolder\dataAccess\RDBMS\connectionServer\db2u201D
    Under the corresponding target database engine, add the Unicode parameter with the UTF8 value as specified below;
            <DataBase Active="Yes" Name="DB2 UDB v8">
              <Parameter Name="Binary Slice Size">30000</Parameter>
              <Parameter Name="Max Rows Available">True</Parameter>
              <Parameter Name="Unicode">UTF8</Parameter>
               </DataBase>
    You can do the modification under the DEFAULT section. This applies for all target databases.
    b>  Define the Environment Variable DB2CODEPAGE with the value 1208.
    Teradata V2R5
    a>  Modify teradata.sbo file under
    u201C\BOInstalledfolder\dataAccess\RDBMS\connectionServer\teradatau201D
    Under the corresponding target database engine, add the Unicode parameter with the UTF8 value as specified below;
            <DataBase Active="Yes" Name="Teradata V2 R5">
              <Parameter Name="Unicode">UTF8</Parameter>
            </DataBase>
    You can do the modification under the DEFAULT section. This applies for all target databases.
    4> Universe - parameters - UNICODE_STRINGS - Yes
    Please let me know if this works for you.
    Thanks,
    Madhu.

  • Report is not displayed in xml format.

    Hi,
    We have a test station based in teststand 4.1 and labview 8.6 code modules.
    From one day to another, the xml report is blank, no character is displayed. That in Operator interface or sequence file execution in teststand editor.If the report format is changed to ASCII or HTML, then runs OK.
    The first step taken was to reload the directories "Cfg\*.ini" and "teststandmodels\Stylesheets\*.xls" from another test station that runs ok. Not solved.
    The second option was to uninstall and reinstall teststand. Also not solved the problem. Then I suposse that this problem is caused for a file or parameter that is not dependent of Teststand, but I don't really know.
    Any suggestions would be appreciated.
    Regards,
    Bergidum.

    Thanks for your help Sendia,
    Yes, I have already tried Computer mother test and all type of reporting options. Only ASCII and and HTML report formats generate visible results.
    Also on-the-fly-reporting is my option by default.
    Before format and reinstall the operating system (windows XP) and reinstall the NI package, I would like to know the origin of the malfunction because there are other five test stations working properly, but if the same problem appears in a new station, then to know the solution.
    Thanks for your attention,
    Bierzo.

  • Infotypes special characters are not displayed correctly

    hi experts,
                  While entering names with special characters in infotypes it happens that some of them are not correctly displayed .
    can you please help me out as soon as possible
    thnx
    harish

    Thank you for your fast reply :)
    The site is not online available unfortunately.
    The character encoding used by Firefox is UTF-8 (automatically detected) which is correct. I even tried manually switching to other Chinese standards, but none of them brought a satisfieable result.
    The site itself does not specify a font (the css only contains "font-family: Arial,Tahoma,Verdana;"), and the site does not provide a custom font either.
    I noticed that if i copy and paste the text into word, the characters are wrongly displayed too using the font MS Mincho (so I assume Firefox automatically selects this font to display the characters which would explain why they are displayed incorrectly)
    Ah, I now included the font "SimSun" in the css (which is installed on in windows and using this font the characters are displayed correctly in word) - and this solved he problem!
    Thanks for your help!!

  • Special characters are not displaying in ADF jsp page

    Hi All,
    By using ADF view controller,I am getting the data from database table but when I display the data in jsp page after special character < what ever the data is there it is not displaced.Provide any suggestions.
    Thanks in Advance
    Mani

    Hi Mani,
    < is a special HTML character and obviously it may not me displayed correctly.
    Here is a reference of all HTML special characters: http://www.w3schools.com/tags/ref_entities.asp
    In your case you can replace < with its special symbol representation - *&amp;#60; or &amp;lt;*
    I also advice you to do so for all special HTML characters.
    You can use this Java library for that purpose : http://commons.apache.org/lang/api/org/apache/commons/lang3/StringEscapeUtils.html
    Nikolay

  • Folders that having non-ascii chars are not displaying on MAC using JFileChooser

    On MAC OS X 10.8.2, I have latest Java 1.7.25 installed. When I run my simple java program which allows me to browse the files and folders of my native file system using JFileChooser, It does not show the folders that having non-ascii char in there name. According this link, this bug had been reported for Java 7 update 6. It was fixed in 7 Update 10. But I am getting this issue in Java 1.7.21 and Java 1.7.25.
    Sample Code-
    {code}
    public class Encoding {
    public static void main(String[] arg) {
    try {
    //NOTE : Here at desktop there is a folder DKF}æßj having spacial char in its name. That is not showing in file chooser as well as while is trying to read for FILE type, it is not identify by Dir as well as File - getting File Not Found Exception
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    } catch (IllegalAccessException ex) {
    Logger.getLogger(Encoding.class.getName()).log(Level.SEVERE, null, ex);
    } catch (UnsupportedLookAndFeelException ex) {
    Logger.getLogger(Encoding.class.getName()).log(Level.SEVERE, null, ex);
    } catch (ClassNotFoundException ex) {
    Logger.getLogger(Encoding.class.getName()).log(Level.SEVERE, null, ex);
    } catch (InstantiationException ex) {
    Logger.getLogger(Encoding.class.getName()).log(Level.SEVERE, null, ex);
    JFileChooser chooser = new JFileChooser(".");
    chooser.showOpenDialog(null);
    {code}

    Hi,
    Did you try this link - osx - File.list() retrieves file names with NON-ASCII characters incorrectly on Mac OS X when using Java 7 from Oracle -…
    set the LANG environment variable. It's a GUI application that I want to deploy as an Mac OS X application, and doing so, the LSEnvironment setting
    <key>LSEnvironment</key> <dict> <key>LANG</key> <string>en_US.UTF-8</string> </dict>

  • Image not displaying correctly when imported in to InDesign

    For some reason InDesign & Illustrator are displaying images correctly. When imported the image is missing layers or the layer is chopped. I have tried exporting the image as a PSD, Tif & JPG. All do the same thing. If I look at the image in Photoshop or MS Word it's fine. I even tried the image in Premiere and it displays correctly

    Ignore. Have found out it was down to paths. Sorted

  • Album art present in album folder, not displaying on iTunes import

    I've got several albums which contain various JPGs of album art. I transfered all my files to an external drive before doing an erase and install for Leopard. Now once they are imported, the album art isn't displaying! Other than manually setting every album, is there a way to automate this process?

    I don't think this is possible. The artwork needs to be stored in the iTunes folder on your computer hard drive in order for it to be displayed on the iPod.
    It's in music/iTunes/iTunes artwork.

  • Smartform material desc. window + zebra printer. 40 chars desc not display

    Hi All,
    I have a problem in printing the material description of 40 characters using zebra printer for label printing.
    If I take field of 40 characters, the printer is wrapping the text after 30 and print in the next line.
    So I divided the desc into 2 strings 30 and 10. and display them in 2 separate windows.
    but the problem is that it is taking space between these two strings, I tried to adjust the windows by overlapping them, but could not succeed .
    Printer settings can not be changed as client dont allow that to do.

    because its wrapping up the text after character 30 and if I print in the same window, it will not show at all
    like if my material desc. is like this:
    string 1
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 
    a a a    b b b b b  b        c  c   c       d   d   d      e   e   e   e        f    f   f    f        g 
    string 2
    1 2 3 4 5 6 7 8 9 10
    g g g g g
    in print out it should print without any spaces in between g(30) and g(1) , but it is taking a space.
    is it because I have taken 2 separate windows ? I need to check it by displaying both strings in the same window. I will check that one.

  • Zip file with special chars are not unzipped properly

    Hi all,
    i have following problem: I want to unzip a zip file. In the zip file there is a file with a special character i.e. "straße". When i call now zipFile.getInputStream( entry ) null will be returned. What can i do? Thanks a lot
    ZipFile zipFile = new ZipFile( file );
        Enumeration enumeration = zipFile.entries();
        while ( enumeration.hasMoreElements() )
          ZipEntry entry = ( ZipEntry ) enumeration.nextElement();
          if ( !entry.isDirectory() )
            InputStream in = null;
            OutputStream out = null;
            try
              in = zipFile.getInputStream( entry );  //<- Here null will be returned When i look at the entry the "ß" of "straße" is represented by á.

    May be you need to specify an ecoding for ZipEntry that would allow special characters?

  • German Special Characters not displayed correctly in RTF  using code

    Hi ,
    In my code we are using webdynpro method
    WDResourceFactory.createResource(
    byte[] data, String resourceName,WDWebResourceType
    Type)
    Here in our code we are implementing this as
    ITemplateElement templateEl = wdContext.currentTemplateElement();
    WDResourceFactory.createResource(
    templateEl.getReportData(),
    reportName.substring(0, reportName.lastIndexOf('.')),
    WDWebResourceType.RTF); reportName.lastIndexOf('.')),
    Here templateEl.getReportData() returns a set of bytes which has some
    german special characters.
    We are generating the Bytes using String.getByes(),Just before
    String text = new String(in);
    collector.putBusinessObject(boName, bo);
    reportDocTemplateParser(collector, text);
    collector.removeBusinessObject(boName);
    String generatedText = collector.generateRTF();
    out = (null != generatedText) ? generatedText.getBytes() : null;
    The out put is the if i am giving a word with german special characters for eg:
    Betriebsübersichten it first gets converted to bytes and then passes through method WDResouseFactory.createResourse(.....) which creates an RTF file and finally in the RTF file it appears as Betriebsbbersichten the special character is not displayed correctly.
    i came to knw that while converting into bytes we have to make it RTF supported encoding.ie for eg generatedText.getBytes('cp1252').i even tried with other charactersets like ISO-8859,cp1253 and so on but none of them worked.
    It would be really great if you could suggest the needful.
    Thanks and Regards
    Neeta

    I soved this by using get_data function of response object. Then converting this into ISO-8859-1 charset.
    See code below.
    DATA :  lv_encoding   TYPE abap_encoding,
              lv_conv       TYPE REF TO cl_abap_conv_in_ce,
              lv_x_string   type xstring.
      lv_x_string = pv_http_client->response->get_data( ).
        lv_encoding = '1100'.
        lv_conv = cl_abap_conv_in_ce=>create(
                              encoding = lv_encoding
                                 input = lv_x_string ).
        lv_conv->read( IMPORTING data = pv_result ).

Maybe you are looking for

  • How to paste a text in a selected textframe

    Hi, for a new script I would like to paste some text in a textFrame. I would like to select my text, copy it and run my script. My script locate a textframe, select it. I don't know how to paste in the content of the selected textframe. app.paste();

  • IPHOTO sharing problems.......

    I just cannot get a handle of the rules, requirements etc. of connecting to my iMac iPhoto Library from my macbook pro. connect as....   should I use this or not does the referenced computer need Iphoto running or not I am constantly having to restar

  • Poster Image in Strobe Player: Must it be a Bitmap Image?

    Hello, Quick question: must the poster image be a bitmap image in the Strobe and Flash players in OSMF?  I would like to use .jpg images because the quality is much better, etc.  When I try to create an image in Photoshop and convert it to a bitmap,

  • Help on access restrictions

    Hi everyone. Thanks for reading this. I'm using a WRT54GS wireless router. My boss asked me to create a policy in this router in order to: 1. Block Windows Live Messenger ports in two computers. Searching some other threads I've found that I have to

  • Exception:[HTTP:101216]Servlet: "AppManagerServlet" failed to preload

    Hi I am getting the below exception while trying to publish my EAR to weblogic 10.3 server. I have another EAR which gets deployed successfully but for this EAR I am getting this exception.I compared both the EARs but there is no much difference. Cou