Newbie: Simplified Chinese characters are displayed as square boxes

Hi,
I am using Windows XP Simplified Chinese Version SP3, Sun JDK5.0 Update 20. I want to run Apache Ofbiz POS; however, the Chinese characters (zh) in PosUiLabels.xml are all displayed as square boxes.
I have tested run Ofbiz in Mac OS X and the Simplified Chinese are displayed normally, and other languages can also be displayed in Windows XP.
What should I do?
Regards,
Terence
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License.  You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
-->
<resource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <property key="PosAdjustment">
        <value xml:lang="en">(adjustment)</value>
        <value xml:lang="es">(adjustment)</value>
        <value xml:lang="fr">(ajustement)</value>
        <value xml:lang="it">(adjustment)</value>
        <value xml:lang="ro">(adjustment)</value>
        <value xml:lang="zh">(&#35843;&#25972;)</value>
    </property>
    <property key="PosTotalReport">
        <value xml:lang="en">TOTALS REPORT</value>
        <value xml:lang="es">REPORTE TOTAL:</value>
        <value xml:lang="fr">TOTAUX</value>
        <value xml:lang="it">TOTALI STAMPA</value>
        <value xml:lang="ro">TOTAL REPORT</value>
        <value xml:lang="zh">&#21512;&#35745;&#25253;&#34920;</value>
    </property>
    <property key="PosTxId">
        <value xml:lang="en">TXID</value>
        <value xml:lang="es">Número de venta</value>
        <value xml:lang="fr">N°vente</value>
        <value xml:lang="it">IDTAX</value>
        <value xml:lang="ro">IDTAX</value>
        <value xml:lang="zh">&#20132;&#26131;&#21495;</value>
    </property>
    <property key="PosULogin">
        <value xml:lang="en">Enter User ID:</value>
        <value xml:lang="es">Ingrese su login:</value>
        <value xml:lang="fr">Entrez votre identifiant :</value>
        <value xml:lang="it">Inserire Id Utente:</value>
        <value xml:lang="ro">Introduceti Id Utilizator:</value>
        <value xml:lang="zh">&#36755;&#20837;&#29992;&#25143; ID:</value>
    </property>
    <property key="PosUPassw">
        <value xml:lang="en">Enter Password:</value>
        <value xml:lang="es">Ingrese password</value>
        <value xml:lang="fr">Entrez votre mot de passe :</value>
        <value xml:lang="it">Inserire Password:</value>
        <value xml:lang="ro">Introduceti Parola:</value>
        <value xml:lang="zh">&#36755;&#20837;&#21475;&#20196;:</value>
    </property>
    <property key="PosUserNotManager">
        <value xml:lang="en">User is not a valid manager!</value>
        <value xml:lang="es">El usuario no es administrador válido</value>
        <value xml:lang="fr">Cet utilisateur n'est pas un gérant !</value>
        <value xml:lang="it">Utente non è un manager valido!</value>
        <value xml:lang="ro">Utilizatorul nu este un manager valid!</value>
        <value xml:lang="zh">&#29992;&#25143;&#38750;&#21512;&#27861;&#31649;&#29702;&#21592;!</value>
    </property>
    <property key="PosValidating">
        <value xml:lang="en">Validating...</value>
        <value xml:lang="es">Validando...</value>
        <value xml:lang="fr">Validation...</value>
        <value xml:lang="it">Validazione...</value>
        <value xml:lang="ro">Validare...</value>
        <value xml:lang="zh">&#30830;&#35748;...</value>
    </property>
    <property key="PosVoid">
        <value xml:lang="en">Enter Order Number To Void:</value>
        <value xml:lang="es">Ingrese número de orden a anular</value>
        <value xml:lang="fr">Entrez le n° d'ordre à annuler :</value>
        <value xml:lang="it">Inserire Numero Ordine Da Svuotare:</value>
        <value xml:lang="ro">Introduceti Numarul Comenzii de Descarcat:</value>
        <value xml:lang="zh">&#36755;&#20837;&#35201;&#20316;&#24223;&#30340;&#35746;&#21333;&#21495;:</value>
    </property>
    <property key="PosWaitingFinalSales">
        <value xml:lang="en">Waiting for final sales data transmission...</value>
        <value xml:lang="es">Esperando transmisión de datos...</value>
        <value xml:lang="fr">En attente de transmission de données ...</value>
        <value xml:lang="it">In Attesa di trasmissione dei dati vendite finali...</value>
        <value xml:lang="ro">Asteptare pentru transmiterea datelor de vanzare finale...</value>
        <value xml:lang="zh">&#31561;&#24453;&#26368;&#32456;&#38144;&#21806;&#25968;&#25454;&#20256;&#36755;...</value>
    </property>
</resource>

When you say "displayed" I assume you mean displayed in some GUI component. In which case you should assign a font to that component which can render those characters properly.

Similar Messages

  • Chinese characters are displayed as blank box on the TextField in Taiwan Android 4.4.2/AIR4.0

    Chinese characters are displayed as blank box on the TextField in Taiwan Android 4.4.2/AIR4.0, such as Nexus7, HTC One,  but in mainland China Nexus7(Android 4.4.2/AIR4.0) showed normal
    AIR SDK is 4.0.0.1628.
    Hope it can be fixed as soon as possible.
    Here is test code:
    package
              import flash.display.Sprite;
              import flash.display.StageAlign;
              import flash.display.StageScaleMode;
              import flash.text.Font;
              import flash.text.TextField;
              import flash.text.TextFieldAutoSize;
              import flash.text.TextFormat;
              public class TestFont extends Sprite
                        public function TestFont()
                                  stage.scaleMode = StageScaleMode.NO_SCALE;
                                  stage.align = StageAlign.TOP_LEFT;
                                  var sprite:Sprite = new Sprite();
                                  var value1:String = "简体中文测试";
                                  var value2:String = "繁體中文測試";
                                  var txt11:TextField = createTextField(null, "11 "+value1);
                                  txt11.x = 10;
                                  txt11.y = 10;
                                  sprite.addChild(txt11);
                                  var txt12:TextField = createTextField(null, "12 "+value2);
                                  txt12.x = txt11.x + txt11.width;
                                  txt12.y = txt11.y;
                                  sprite.addChild(txt12);
                                  var txt21:TextField = createTextField("STHeitiTC-Medium","21 "+value1);
                                  txt21.x = 10;
                                  txt21.y = txt11.y + txt11.height;
                                  sprite.addChild(txt21);
                                  var txt22:TextField = createTextField("MSYH","22 "+value2);
                                  txt22.x = txt21.x + txt21.width;
                                  txt22.y = txt21.y;
                                  sprite.addChild(txt22);
                                  var lastY:int = txt22.y + txt22.height;
                                  var fonts:Array = Font.enumerateFonts(true);
                                  var index:int = 0;
                                  for each (var font1:Font in fonts)
                                            index++;
                                            var txtF:TextField = createTextField(font1.fontName, index + "/" + fonts.length + " " + font1.fontName + " "+value1 +" " + value2);
                                            txtF.x = 10;
                                            txtF.y = lastY;
                                            sprite.addChild(txtF);
                                            lastY += txtF.height;
                                  addChild(sprite);
                        public function createTextField(font:String, value:String):TextField{
                                  var txt:TextField = new TextField();
                                  txt.autoSize = TextFieldAutoSize.LEFT;
                                  var format:TextFormat = new TextFormat();
                                  if(font != null){
                                            format.font = font;
                                            txt.defaultTextFormat = format;
                                            txt.setTextFormat(format);
                                  txt.text = value;
                                  var dformat:TextFormat = txt.defaultTextFormat;
                                  if(dformat != null){
                                            txt.text = value + " |" + dformat.font;
                                  if(font != null){
                                            txt.setTextFormat(format);
                                  return txt;

    I am in mainland China, my Nexus7 can display chinese characters, but my friend in Taiwan, his android4.4.2 display chinese characters as blank.
    I don't understand the reason.
    By the way, TextFormat.font don't work, whatever I set any fonts, display are the same.
    My screenshots:
    Taiwan's screenshots:

  • Chinese characters are displaying as squares in mail subject & content

    Hi when I am sending or receiving mail which is having Chinese characters in either mail subject or contents then some Chinese characters are appearing as squares.
    This issue is only coming on single system (Window XP, outlook 2007)

    Hello,
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    I'm marking the reply as answer as there has been no update for a couple of days.
    If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Cara Chen
    TechNet Community Support

  • Chinese characters are displayed as blank box on the TextField in The new HTC One with Android 4.4.2

    I use the AIR SDK is 4.0.0.1628, mobile phone is The new HTC One with Android 4.4.2 in Taiwan.
    When the application installed on the The new HTC One with Android 4.4.2, chinese characters in TextField displayed as blank.
    Hope it can be fixed as soon as possible.
    The test code:
    package
              import flash.display.Sprite;
              import flash.display.StageAlign;
              import flash.display.StageScaleMode;
              import flash.text.Font;
              import flash.text.TextField;
              import flash.text.TextFieldAutoSize;
              import flash.text.TextFormat;
              public class TestFont extends Sprite
                        public function TestFont()
                                  stage.scaleMode = StageScaleMode.NO_SCALE;
                                  stage.align = StageAlign.TOP_LEFT;
                                  var sprite:Sprite = new Sprite();
                                  var value1:String = "简体中文测试";
                                  var value2:String = "繁體中文測試";
                                  var txt11:TextField = createTextField(null, "11 "+value1);
                                  txt11.x = 10;
                                  txt11.y = 10;
                                  sprite.addChild(txt11);
                                  var txt12:TextField = createTextField(null, "12 "+value2);
                                  txt12.x = txt11.x + txt11.width;
                                  txt12.y = txt11.y;
                                  sprite.addChild(txt12);
                                  var txt21:TextField = createTextField("STHeitiTC-Medium","21 "+value1);
                                  txt21.x = 10;
                                  txt21.y = txt11.y + txt11.height;
                                  sprite.addChild(txt21);
                                  var txt22:TextField = createTextField("MSYH","22 "+value2);
                                  txt22.x = txt21.x + txt21.width;
                                  txt22.y = txt21.y;
                                  sprite.addChild(txt22);
                                  var lastY:int = txt22.y + txt22.height;
                                  var fonts:Array = Font.enumerateFonts(true);
                                  var index:int = 0;
                                  for each (var font1:Font in fonts)
                                            index++;
                                            var txtF:TextField = createTextField(font1.fontName, index + "/" + fonts.length + " " + font1.fontName + " "+value1 +" " + value2);
                                            txtF.x = 10;
                                            txtF.y = lastY;
                                            sprite.addChild(txtF);
                                            lastY += txtF.height;
                                  addChild(sprite);
                        public function createTextField(font:String, value:String):TextField{
                                  var txt:TextField = new TextField();
                                  txt.autoSize = TextFieldAutoSize.LEFT;
                                  var format:TextFormat = new TextFormat();
                                  if(font != null){
                                            format.font = font;
                                            txt.defaultTextFormat = format;
                                            txt.setTextFormat(format);
                                  txt.text = value;
                                  var dformat:TextFormat = txt.defaultTextFormat;
                                  if(dformat != null){
                                            txt.text = value + " |" + dformat.font;
                                  if(font != null){
                                            txt.setTextFormat(format);
                                  return txt;

    I am in mainland China, my Nexus7 can display chinese characters, but my friend in Taiwan, his android4.4.2 display chinese characters as blank.
    I don't understand the reason.
    By the way, TextFormat.font don't work, whatever I set any fonts, display are the same.
    My screenshots:
    Taiwan's screenshots:

  • Korean characters are displayed as blank box on the TextField in Galaxy Note 3/Android 4.4/AIR 4.0

    The AIR SDK we used is 1/14/2014 Release - AIR 4.
    The device we have tested on is Samsung Galaxy Note 3/Android 4.4.
    We found that it's quite similar with Bug 3681788 which has been fixed in Beta version 4.0.0.1619.
    We checked the issue again with this beta version, and the result is Chinese characters are shown correctly, but Korean's are still not.
    Bug 3681788: The CCJ languages characters are displayed as blank box on the TextField.
    Hope it can be fixed as soon as possible.

    Japanese Characteres have same issue.
    We tested on ASUS Nexus 7/Android 4.4.2/AIR 4.0 and Japanese characters are displayed as blank box in the TextField.
    The AIR SDK we used is February 20th 2014 Release - AIR 4.
    The device we have tested on is ASUS Nexus 7/Android 4.4.2.
    AIR SDK 3.6 worked fine.
    AIR SDK 3.9 has same issue.
    We tested Chinese on ASUS Nexus 7/Android 4.4.2/AIR 4.0, and Chinese Characters are displayed as blank box in the TextField.
    I doubt that Korean Characters will also displayed as blank box.( Sorry we cannot read or write Korean so we couldn't test it)
    I am guessing GalaxyNote 3(4.4) may also have same issue with Japanese.
    Hope this helps
    Kenta

  • Chinese Character displayed as square box

    I have been trying an opensourced application called Alliancep2p (could be obtained from www.alliancep2p.com) using JRE 1.6 on an English Windows XP Pro machine. The problem is all chinese input are displayed as "square box". Searching for a particular chinese phase works, only that everything is displayed as "square box". It looks like a font issue, though I'm not that sure. Is there anyway the default fonts could be changed, or to get the characters correctly displayed?
    Note: I have east asian fonts installed, and the Java config panel can display chinese correctly.
    I tried the same application under GNU/Linux (locale is UTF-8) and chinese input/display correctly without any problem at all. Does it mean that it is not the problem of the application, or?
    Thanks for all the input.

    Hi,
    Please check below notes which could be helpful for your issue
    After Korean Language Installation Oracle Apps Displays All Characters As Squares [ID 731894.1]
    Chinese Display as Square on the Form Menu after Apply NLS Patch 6678700_ZHT [ID 839957.1]
    Chinese Characters are displayed as Empty Squares using Courier New Font [ID 578656.1]
    Regard
    Helios

  • Non-english character display as square box

    Hi all,
    I'm not very sure if this question should be asked here or in the JRE board, thus I'm trying here also
    I have been trying an opensourced application called Alliancep2p (could be obtained from www.alliancep2p.com) using JRE 1.6 on an English Windows XP Pro machine.
    The problem:
    all chinese input are displayed as "square box". It looks like the programme "gets" the correct character, only that everything is displayed as "square box".
    It looks like a font issue, though I'm not that sure. Is there anyway the default fonts could be changed, or to get the characters correctly displayed?
    Note: I have east asian fonts installed, and the Java config panel can display chinese or other non-english characters correctly.
    I tried the same application under GNU/Linux (locale is UTF-8) and chinese input/display correctly without any problem at all. Does it mean that it is not the problem of the application, or?
    The original question in the JRE board:
    http://forum.java.sun.com/thread.jspa?threadID=5265369&tstart=0
    Thanks for all the input.

    I'm not really sure if it's a problem of the application or not. But the fact that it works perfectly under Linux makes me think maybe it's not the problem of the program, and actually their developers said that unicode is being used all over the program and seems like they're not CJK users also.
    I'm not a java guru so I can't really tell from the source if there's anything wrong.

  • Chinese Characters not display when PDF for marketing doc

    Hi All,
    I have typed in some Chinese Characters into a Print Layout Document.
    I am able to print these documents with the Chinese characters. But I am not able to display these Chinese Characters when I click on PDF.
    Please advise.
    Rdgs
    Jessie

    Hi Gordon,
    I have applied the various asian language service pack for the Adobe Reader.
    However, i am still not able to see the Chinese Characters in the PDF document when click on the PDF at SAP B1's Toolbar.
    Step 1 : Update a PLD with Chinese Characters (as text or from database field). Eg. AR Invoice.
    Step 2 : Set the PLD as Default Layout.
    Step 3 : At AR Invoice, call out an existing Invoice, click on Preview. Chinese Character is able to be previewed and printed.
    Convert to PLD.
    Step 4 : At AR Invoice, call out an existing Invoice, click on PDF button at the Toolbar. Preview the PDF document. No Chinese Characters are displayed.
    Is it due to Localisation? Localisation = Singapore
    Please advise.
    Regards
    Jessie

  • IPad Emails received in Outlook with Garbled Simplified Chinese Characters

    My iPad users sent emails to Outlook(2003,2007) users but Simplified Chinese characters are all not readable!
    The same email sent from Motorola smartphone has no such issue.
    I report the case to Apple support on Nov. 3 and heard nothing until now.

    Alardon wrote:
    Hi all, sorry for opening an old thread.. I also experience the same issues. Does anyone know whether this problem have been resolved?
    If you are having the same issue, the answer is "no".  You could try to switch the OS language to Chinese and see if that makes a difference.  The iPad has no way to select the encoding of outgoing messages, any adjustment necessary has to be made at the other end. 

  • Traditional and Simplified Chinese characters couldn't be displayed!

    Hi all,
    Recently I installed an Oracle 9i Database Server (9.0.1).
    Problem regarding the globalization support issue was encountered after the installation of Oracle 9i Database Server. Parameters in NLS table had been checked that the language is initially set to AMERICAN, territory is set to AMERICA and the character set is UTF8.
    Since traditional and simplified chinese characters must be required for the HK server, it is believed that the above parameters should be altered to TRADITIONAL CHINESE / SIMPLIFIED CHINESE, HONG KONG and ZHT16MSWIN950 / ZHS16CGB231280 respectively.
    I tried to alter the NLS_DATABASE_PARAMETERS, but it’s not working; should the NLS_SESSION_PARAMETERS be changed instead? I also tried this one, changes is taken place but the chinese characters still couldn't be displayed, just bunches of &#20098;&#30908; (meaningless codes) instead.
    Another piece of information is that the Oracle server is installed on the basis of Windows Server 2003 Standard Edition, should the Language for non-Unicode programs (which is in the “Advanced” page of the Regional and Language Settings) be configured to Chinese (HKSAR)? Various combinations, in terms of English (US), Chinese (HKSAR), Chinese (PRC), Chinese (Taiwan), had been taken turns to test for the results. However, same results happened.
    Hence, how should we configure? Please advice us.
    P.S.# It is known that this question should be placed in the "Globalization Support" forum, I have done that; however, it is hoped that I could seek more advice in here.
    Thx in advance.
    Karen

    Karen,
    Setting up such an environment requires some sophistication and know how. I would advise reading though the Globalization Support Guide and som of the papers on the Globalization Home Page http://www.oracle.com/technology/tech/globalization/index.html
    before randomly attempting to change parameters. If your requirement is to store and retrieve both TRADITIONAL and SIMPLIFIED CHINESE then your database needs to be Unicode (UTF-8). Designing an application that allows you to easily access multilingual data requires careful design and planning. If you are simply trying to quickly display data you have in your database you might want to use iSQL*PLUS which is browser based and will allow you to display Unicode data. It might also be helpful to take a look at the following paper: http://www.oracle.com/technology/tech/globalization/pdf/globalization-best-practices.PDF

  • Chinese characters are not displayed in the Firefox bookmarks

    Chinese characters are not displayed in the Firefox bookmarks. The name looks like e.g. "??????? ???? cn.nytimes.com"
    Chinese character of the site name is displayed ok in the head of the browser window and there is no problem reading chinese web content. I use Firefox Portable 11 /English from portableapps.com in Windows XP.
    I googled and got some tips:
    1) Set your browser to recognise Chinese language internet sites.
    Windows users: Under "Tools - Options" on your browser's menu-bar add Chinese to the languages list.
    - I did this.
    2) Set your browser's "Character Set" or "Encoding" to UTF-8 (sometimes also called Universal Alphabet or Unicode).
    Encoding settings can be changed under the "View" option in your browser's menu-bar.
    - It was already set to UTF-8.
    3) Windows users: If Chinese text still does not display correctly, East Asian language support may need to be enabled.
    - This has been done when I installed Windows.
    I still don't get any Chinese fonts in the bookmark names. I can edit the bookmark name with chinese characters and then save the bookmark, it works fine. But why does not Firefox recognize the characters when saving bookmarks? Help is appreciated.

    No I didn't change anything deep beneath the hood. My problem didn't apply to the URL, but to the name of the link or bookmark header or whatever you would like to call it. (When hitting Ctrl + D there is a Name field). I only got ???????? instead of chinese characters in the name. Also for e.g. www.cntv.cn ...but maybe all China is not in the whitelist either. ;-) But anyway, this was not the real problem for me.
    Apparently I was wrong as after a reboot of the computer it worked. The solution seemed to be to add Chinese to the language list. I don't know why it was not enough to restart Firefox?
    Now I only have problems to show chinese characters in the name field of my external link manager... But I guess it is not an issue for Mozilla.

  • Pls help - Displaying Simplified Chinese characters

    Hi all,
    I am using Servlet to generate HTML.
    When I use setContentType="charset=big5" and out.println(" . . . ."); with Big-5 Traditional Chinese characters, everything is fine.
    However, when I use setContentType="charset=gb2312" and out.println(" . . . ."); with GB2312 Simplified Chinese characters, everything is trash with some ??????.
    The internet browser in both cases can correctly set to the appropriate character set, that is, in the 1st case it is big5 and in the 2nd case it is gb2312.
    Pls help

    It should be because the font provided cannot handle the characters. Java only ever sprays question marks or rectangles at you if the font you're using is incapable of displaying what you're trying to show.
    I'd imagine that the system's default font is capable of displaying Big5 Chinese characters quite happily if it's working on the page. The problem will come when you switch the encoding of the page and the characters within it. The same default font obviously can't display GBK stuff. So switching the font (probably through the use of <FONT face=""> tags) might do the trick.
    Hope that helps!
    Martin Hughes

  • Fax output - Chinese characters are garbled

    Hello,
    We are using fax output for two forms ( One smartform and the othe sap script). Both the form outputs are thorugh  the same fax device. For the smartform output there are no issues and the output is as expected but for the sap script output the chinese characters are garbled. Instead of the chinese characters i get output like _____ _______>,<%,,<< etc.
    Interestingly, if i have a look at the print preview or take print out there is no issue and the characters are as expected. The issue arises only during fax.
    Can someone help pls?
    Thanks,
    Venkat

    HI friend,
    I found few same post in SDN which are related to this Chinese characters in SAP Scripts.
    Please see this link and find is the problem is same as yours if so make use of it.
    Link: [Output of Sapscript in Chinese language|Output of Sapscript in Chinese language;
    Link: [Problem displaying Chinese Characters|Problem displaying Chinese Characters in SAP script form WESCHEINVERS1;
    I think these will be helpful please revert back to me after going through the links.
    Thanks,
    Sri Hari

  • Simplified Chinese characters changed

    Dear sir,
    We are using SAP 4.6B with code page 8300 (ZF). I know we cannot recognize simplified Chinese characters, but we still can receive them and store them into our table without change any codes when our client transmit data from EDI. But recently we started to use webMethods 6.0 to receive XML messages from our client. When they send XML with simplified Chinese characters to us, we found the characters saving in our table are different from those characters in webMethods. We don't know what system changed the characters, we had debug webMethods, the characters are OK before call RFC, but after call RFC, the contents in table are different. Our XML is using UTF-8, and the settings in webMethods is 'EN' for SAP logon.
    Thanks for your response, please tell us how to fix the error or what configuration should be done, thanks!
    Joanne Wu

    Joanne,
    I think the answer lies in your question itself. Can you try the SAP logon with ZF languange. Is there any testriction for using that? Most probably it sould work.
    Best wishes,
    Thomas.

  • Simplified Chinese characters in iGrid

    Hi,
    Does anyone know how to insert simplified Chinese characters in the headings of an iGrid applet.
    Thanks,
    Ahmed

    Thanks Sam,
    However the iGrid editor does not take in Chinese characters. When I pasted the Chinese characters in the headings fields of the layout pane of the iGrid editor they came out as little boxes. Even after saving the template and viewing it in IE they still came out as little boxes.
    I opened up the saved template's XML file in a unicode editor pasted the Chinese characters for the headers then changed the font from the default Dialog to SimSun. SimSun is not one of the fonts available in the dropdown list of fonts in the iGrid editor. I then saved the XML file and re-viewed in IE and the Chinese characters displayed properly.
    Regards,
    Ahmed

Maybe you are looking for

  • How to deploy/debug maven project in workshop?

    I've installed m2eclipse in Workshop 10.0. I'm able to download maven projects from a subversion repository. m2eclipse allows right-clicking for maven-install, maven-build, maven-package. Build generates a proper war file. But Workshop does not recog

  • How do I set the stage (or the background in the stage?) to be transparent?

    How do I set the stage (or the background in the stage?) to be transparent? Thanks Gary

  • Transferring and viewing Word docs and .pdf

    I'm going on a trip and want to store lots of info in .docx and .pdf on an ipad2. 1. Can I view Word docx and .pdf files on the ipad 2 without buying apps? 2. If so, how do I transfer them, and where can I find them on it after they are transferred?

  • Help reqd to deactivate the debugger

    Hi. all Could u pls help me how to deactivate the debugger mode for se71.... mine one is going to debugging slot whenever im executing the layout/program thanks n regards sankar

  • Two Fabric redundancy and storage flapping

    Hello! I have a fairly new Nexus 5548 implementation, using the Nexus for stricly storage. I have two 5548s for two different Fabrics, for redundancy. They are two seperate fabrics, and the Nexus are not stacked so they are managed individually. When