Writing application handling non-latin character s...

I'd like to write an application which can process Greek text as input and can display such text on the screen as well. The application user interface should be English. Is it possible with standard E90 communicator? Any changes required on standard configuration? Please advise! Many thanks in advance!

I'd like to write an application which can process Greek text as input and can display such text on the screen as well. The application user interface should be English. Is it possible with standard E90 communicator? Any changes required on standard configuration? Please advise! Many thanks in advance!

Similar Messages

  • Non-Latin Character Display On Web Page

    In a Java web application, only one non-Latin character display issue is that when they are typied into a JSP file. Otherwise, non-Latin characters display correctly from the message property file or from database.
    Anyone know how to solve it?
    Thanks.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Solved!
    Just need to have the JSP page tag on the related JSP file.
    null

    Welcome to our community, Denise
    Perhaps check the names of all the files involved? What type
    of web server are you using?
    You say that your co-worker said she is linking to the skin
    file from a .htm page, but what is missing here is whether she is
    using the .HTM page you provided in the mix or if it's one she
    created herself. If it's one she created herself, that may be the
    issue.
    Cheers... Rick

  • Writing non-latin Character to Log file from Java application

    Hi Everyone,
    I'm encountering a very strange localization issue.
    I'm executing the following code from a J2EE application (although the behavior is replicated exactly from a Java console application):
    File testFile = new File("D:\\Temp\\blah.txt");
    testFile.createNewFile();
    Writer output = null;
    try {
    output = new BufferedWriter( new FileWriter(testFile) );
    output.write( "אחד שתיים שלוש" ); // Non-Latin characters
    output.write("one two three");
    finally {
    if (output != null) output.close();
    I'm writing non-latin characters (Hebrew in my case) to the file, but these characters are written as question marks:
    ??? ????? ????one two three
    I'm running the project with the following java arguments:
    -Dfile.encoding=UTF8 -Duser.region=IL -Duser.language=he
    And the Project Properties -> Compiler -> Character Encoding = UTF8
    Also, the local Windows Regional Settings are set to Israel / Hebrew.
    Can someone please help with this issue?
    I've tried this with UTF-8 (instead of UTF8) and still no results.
    I suspect this is a Java / Environment issue as it reproduces on a J2EE app and on a console app.
    Any help will be greatly appreciated.
    Thanks,
    Tal.

    You should open/close it somehow at every write from different processes.
    But I personally prefer different file names to your forced merging, though.

  • Non-Latin Character Display

    I have several Java web applications on Tomcat where non-Latin characters function properly with only one exception. Non-Latin characters, Chinese in this case, can be displayed properly thorough the JSTL message tag. The related configuration are followings:
    HTML: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    JSP: <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    The applications can take Chinese character inputs correctly with a filter of converting request character encoding to "UTF-8".
    The only problem is that Chinese characters don't displayed properly when they are directly typied on a JSP file. I have set the Eclipse file text encoding to utf-8 and the characters are shown correctly in the IDE.
    I believe that is a TC configuration related issue. After having "set JAVA_OPTS= -Dfile.encoding=UTF-8" in the catalina.bat file, nothing has changed.
    How to solve this problem?
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Solved!
    Just need to have the JSP page tag on the related JSP file.
    Message was edited by:
    vwuvancouver

    I have several Java web applications on Tomcat where non-Latin characters function properly with only one exception. Non-Latin characters, Chinese in this case, can be displayed properly thorough the JSTL message tag. The related configuration are followings:
    HTML: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    JSP: <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    The applications can take Chinese character inputs correctly with a filter of converting request character encoding to "UTF-8".
    The only problem is that Chinese characters don't displayed properly when they are directly typied on a JSP file. I have set the Eclipse file text encoding to utf-8 and the characters are shown correctly in the IDE.
    I believe that is a TC configuration related issue. After having "set JAVA_OPTS= -Dfile.encoding=UTF-8" in the catalina.bat file, nothing has changed.
    How to solve this problem?
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Solved!
    Just need to have the JSP page tag on the related JSP file.
    Message was edited by:
    vwuvancouver

  • Non-latin character support for photobook?

    Hello,
    Does anyone know if photo-book created from iPhoto supports printing non-Latin characters, more precisely cyrillic?
    Thanks!

    Before you order the book Control-click in the gray area next to a page and select Preview Book. When the book has been assembled and displayed in Preview you can save it as a PDF and check to make sure your text has been rendered correctly.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Non latin character sets and accented latin character with refind

    I need to use refind to deal with strings containing accented
    characters like žittâ lísu, but it doesn't seem to
    find them. Also when using it with cyrillic characters , it won't
    find individual characters, but if I test for [\w] it'll work.
    I found a livedocs that says cf uses the Java unicode
    standard for characters. Is it possible to use refind with non
    latin characters or accented characters or do I have to write my
    own Java?

    ogre11 wrote:
    > I need to use refind to deal with strings containing
    accented characters like
    > ?itt? l?su, but it doesn't seem to find them. Also when
    using it with cyrillic
    > characters , it won't find individual characters, but if
    I test for [\w] it'll
    > work.
    works fine for me using unicode data:
    <cfprocessingdirective pageencoding="utf-8">
    <cfscript>
    t="Tá mé in ann gloine a ithe;
    Nà chuireann sé isteach nó amach
    orm";
    s="á";
    writeoutput("search:=#t#<br>for:=#s#<br>found
    at:=#reFind(s,t,1,false)#");
    </cfscript>
    what's the encoding for your data?

  • A ques about Reading and Writing non-Latin character Strings

    Never had any need to to the captioned before, so I never investigated it. But now I do.
    We are in the midst of a major conversion of our software to UTF-8. Oracle Forms displays these Strings (ex: &#1059;&#1082;&#1088;&#1072;&#1111;&#1085;&#1089;&#1100;&#1082;&#1072;) properly, but when I query the DB column behind the form and display the O/P to a TextArea, or use BufferedWriter to write it to a File it displays the old upside-down question mark. Similarly if I load data into the column, while it displays fine in my SQL statement, it loads wrong and displays on the form as UD?marks. So, what simple thing am I missing?
    ~Bill
    Edited by: abillconsl on Dec 5, 2008 8:31 PM

    I downloaded the ojdbc14.jar and the pgm can find it and I can connect to the DB via:URL url = "jdbc:oracle:thin:"+host; // host is the hostname, port and sid
    Connection con = DriverManager.getConnection( url, uid, pwd );
    {code}
    But I want to connect via:
    {code:java}"jdbc:odbc:"+sid; // where sid is the USER DSN in the ODBC Data Source Administrator
    {code} ... but I need to run the setup pgm for the driver and I can't find one for Oracle. Anybody know where I should be looking? In the past the DB Admins set these up.
    ~Bill                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Hot Sync with Non-latin Character Display Problem

    I have a XP Home Desktop with Palm Desktop 4.01 installed. When I do a hot sync with my Sony Clie T655C, the chinese characters are display correctly in both XP home Desktop and the Clie.
    Now, I have a netbook with window7 Starter installed for travelling use. It took me a while to resolve the problem on the hotsync with window 7 starter and sony clie. At the end, I have Palm desktop v6.2 and Palmhotsyncsetup from pimlico on the netbook. I am able to do a hotsync with cradle/cable, but not through network (with TCP/IP not listen error message).
    I have installed the chinese, English, french IME for the window 7 Starter netbook. I am able to type Chinese character in Notepad and Word and display the character correctly. I am able to save the file ( filename in both chinese and english character), re-open it and all characters are displayed correctly.
    But with Palm Desktop v6.2, I am able to type chinese and the characters are displayed correctly in calendar/data book. When I close the palm desktop and re-open it again. All the characters become "?", as a result, I can not fully evaluate the software Pimlico for window desktop. As it only works with Palm desktop v6.2.
    Any suggestion?
    Post relates to: Palm TX

    I have a XP Home Desktop with Palm Desktop 4.01 installed. When I do a hot sync with my Sony Clie T655C, the chinese characters are display correctly in both XP home Desktop and the Clie.
    Now, I have a netbook with window7 Starter installed for travelling use. It took me a while to resolve the problem on the hotsync with window 7 starter and sony clie. At the end, I have Palm desktop v6.2 and Palmhotsyncsetup from pimlico on the netbook. I am able to do a hotsync with cradle/cable, but not through network (with TCP/IP not listen error message).
    I have installed the chinese, English, french IME for the window 7 Starter netbook. I am able to type Chinese character in Notepad and Word and display the character correctly. I am able to save the file ( filename in both chinese and english character), re-open it and all characters are displayed correctly.
    But with Palm Desktop v6.2, I am able to type chinese and the characters are displayed correctly in calendar/data book. When I close the palm desktop and re-open it again. All the characters become "?", as a result, I can not fully evaluate the software Pimlico for window desktop. As it only works with Palm desktop v6.2.
    Any suggestion?
    Post relates to: Palm TX

  • [solved] Installing MS fonts breaks non-Latin character display

    Hello,
      I just installed the standard Windows 7 font-set by directly copying it into "/usr/share/fonts/Windows/"; now, various scripts -- including Arabic, Chinese, Japanese, and many others -- display as blank squares.  I have a number of unusual things installed, including the infinality-bundle and a large number of obscure manually installed fonts (to achieve complete unicode coverage).  This isn't the first time new fonts have broken things (I had to remove cardo.ttf because it replaces runic glyphs with its own placeholder) but it is the most severe.  I don't want to remove either infinality or the ms fonts, but can't find out what to modify in order to make them play nice.  The goal is to have the system primarily use Windows fonts (especially for web browsing), and fall back on the Linux fonts for unusual characters.  Fontconfig is confusingly documented.  Could anyone give me a push in the right direction?  Thank you all.
    On a related note; if anyone knows a good, cohesive set of fonts that cover the entire Unicode standard, I would be in tears of joy. 
    Last edited by Aestus (2014-02-03 22:25:18)

    ... Yes, something is definitely wrong with this picture.
    ┌(user@localhost)─(0)─(10:54 AM Sat Feb 01)
    └─(~)─(10 files, 256Kb)─> fc-query /usr/share/fonts/windows/* | grep vers
    Can't query face 0 of font file /usr/share/fonts/windows/ahronbd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/andlso.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/angsab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/angsai.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/angsa.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/angsaub.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/angsaui.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/angsau.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/angsauz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/angsaz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/aparajbi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/aparajb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/aparaji.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/aparaj.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/arabtype.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/arialbd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/arialbi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/ariali.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/arial.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/ariblk.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/batang.ttc
    Can't query face 0 of font file /usr/share/fonts/windows/browab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/browai.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/browa.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/browaub.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/browaui.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/browau.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/browauz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/browaz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/calibrib.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/calibrii.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/calibri.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/calibriz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/cambriab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/cambriai.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/cambria.ttc
    Can't query face 0 of font file /usr/share/fonts/windows/cambriaz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/Candarab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/Candarai.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/Candara.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/Candaraz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/comicbd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/comic.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/consolab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/consolai.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/consola.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/consolaz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/constanb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/constani.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/constan.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/constanz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/corbelb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/corbeli.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/corbel.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/corbelz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/cordiab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/cordiai.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/cordia.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/cordiaub.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/cordiaui.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/cordiau.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/cordiauz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/cordiaz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/courbd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/courbi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/couri.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/cour.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/daunpenh.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/davidbd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/david.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/dokchamp.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/ebrimabd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/ebrima.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/estre.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/euphemia.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/framdit.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/framd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/frank.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/Gabriola.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/gautamib.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/gautami.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/georgiab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/georgiai.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/georgia.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/georgiaz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/gishabd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/gisha.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/gulim.ttc
    Can't query face 0 of font file /usr/share/fonts/windows/himalaya.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/impact.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/iskpotab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/iskpota.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/kaiu.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/kalingab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/kalinga.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/kartikab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/kartika.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/KhmerUIb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/KhmerUI.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/kokilabi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/kokilab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/kokilai.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/kokila.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/l_10646.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/LaoUIb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/LaoUI.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/lathab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/latha.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/leelawad.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/leelawdb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/lucon.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/lvnmbd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/lvnm.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/majallab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/majalla.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/malgunbd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/malgun.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/mangalb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/mangal.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/marlett.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/meiryob.ttc
    Can't query face 0 of font file /usr/share/fonts/windows/meiryo.ttc
    Can't query face 0 of font file /usr/share/fonts/windows/micross.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/mingliub.ttc
    Can't query face 0 of font file /usr/share/fonts/windows/mingliu.ttc
    Can't query face 0 of font file /usr/share/fonts/windows/monbaiti.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/moolbor.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/mriamc.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/mriam.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/msgothic.ttc
    Can't query face 0 of font file /usr/share/fonts/windows/msjhbd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/msjh.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/msmincho.ttc
    Can't query face 0 of font file /usr/share/fonts/windows/msuighur.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/msyhbd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/msyh.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/msyi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/mvboli.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/nrkis.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/ntailub.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/ntailu.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/nyala.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/palabi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/palab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/palai.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/pala.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/phagspab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/phagspa.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/plantc.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/raavib.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/raavi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/rod.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/segoeprb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/segoepr.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/segoescb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/segoesc.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/segoeuib.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/segoeuii.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/segoeuil.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/segoeui.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/segoeuiz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/seguisb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/seguisym.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/Shonarb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/Shonar.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/shrutib.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/shruti.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/simfang.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/simhei.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/simkai.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/simpbdo.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/simpfxo.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/simpo.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/simsunb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/simsun.ttc
    Can't query face 0 of font file /usr/share/fonts/windows/sylfaen.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/symbol.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/tahomabd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/tahoma.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/taileb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/taile.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/timesbd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/timesbi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/timesi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/times.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/tradbdo.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/trado.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/trebucbd.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/trebucbi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/trebucit.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/trebuc.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/tungab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/tunga.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcdbi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcdb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcdi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcdl.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcebi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upceb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcei.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcel.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcfbi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcfb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcfi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcfl.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcibi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcib.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcii.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcil.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcjbi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcjb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcji.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcjl.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upckbi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upckb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcki.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upckl.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upclbi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upclb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcli.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/upcll.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/utsaahbi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/utsaahb.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/utsaahi.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/utsaah.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/Vanib.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/Vani.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/verdanab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/verdanai.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/verdana.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/verdanaz.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/vijayab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/vijaya.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/vrindab.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/vrinda.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/webdings.ttf
    Can't query face 0 of font file /usr/share/fonts/windows/wingding.ttf
    ┌(user@localhost)─(130)─(11:04 AM Sat Feb 01)
    └─(~)─(10 files, 256Kb)─> fc-query /usr/share/fonts/Unicode/* | grep vers
    Can't query face 0 of font file /usr/share/fonts/Unicode/Aegean.ttf
    Can't query face 0 of font file /usr/share/fonts/Unicode/Aegyptus_B.ttf
    Can't query face 0 of font file /usr/share/fonts/Unicode/Aegyptus_R.ttf
    Can't query face 0 of font file /usr/share/fonts/Unicode/Akkadian.ttf
    Can't query face 0 of font file /usr/share/fonts/Unicode/Analecta.ttf
    Can't query face 0 of font file /usr/share/fonts/Unicode/Anatolian.ttf
    fontversion: 65536(i)(s)
    fontversion: 203162(i)(s)
    fontversion: 72745(i)(s)
    fontversion: 131072(i)(s)
    Can't query face 0 of font file /usr/share/fonts/Unicode/CODE2001.TTF
    Can't query face 0 of font file /usr/share/fonts/Unicode/CODE2002.TTF
    fontversion: 76736(i)(s)
    fontversion: 65602(i)(s)
    fontversion: 65536(i)(s)
    fontversion: 65536(i)(s)
    family: "Everson Mono"(s)
    fullname: "EversonMono"(s)
    file: "/usr/share/fonts/Unicode/Everson Mono.ttf"(s)
    fontversion: 406389(i)(s)
    postscriptname: "EversonMono"(s)
    Can't query face 0 of font file /usr/share/fonts/Unicode/gulim.ttc
    Can't query face 0 of font file /usr/share/fonts/Unicode/gulim.ttf
    fontversion: 101449(i)(s)
    fontversion: 65536(i)(s)
    fontversion: 65536(i)(s)
    fontversion: 131072(i)(s)
    Can't query face 0 of font file /usr/share/fonts/Unicode/Maya.ttf
    fontversion: 131072(i)(s)
    Can't query face 0 of font file /usr/share/fonts/Unicode/Musica.ttf
    Can't query face 0 of font file /usr/share/fonts/Unicode/Quivira.ttf
    fontversion: 39321(i)(s)
    fontversion: 183500(i)(s)
    fontversion: 65536(i)(s)
    fontversion: 327680(i)(s)
    fontversion: 58982(i)(s)
    fontversion: 163840(i)(s)
    fontversion: 163840(i)(s)
    Can't query face 0 of font file /usr/share/fonts/Unicode/UnBatang_0613.ttf
    Can't query face 0 of font file /usr/share/fonts/Unicode/Unidings.ttf
    fontversion: 262144(i)(s)
    fontversion: 65536(i)(s)
    fontversion: 52428(i)(s)
    fontversion: 52428(i)(s)
    fontversion: 281804(i)(s)
    fontversion: 144179(i)(s)

  • Non-Latin characters no displaying properly in Safari on iPhone

    I am having an issue where non-English (Chinese, Japanese etc) characters are displaying as squares on the iPhone's Safari browser. I've seen this issue on Windows when you haven't installed support for Asian languages.
    It would appear that the version of OS-X on the iPhones does not have support for non-Latin character sets.
    Has anyone else experienced this problem?

    I am having an issue where non-English (Chinese,
    Japanese etc) characters are displaying as squares on
    the iPhone's Safari browser.
    Could you provide the urls? It may be the pages have bad coding. Correctly coded pages will display according to tests I've seen:
    http://homepage.mac.com/thgewecke/iphonesafarilang.jpg
    But unlike OS X the iPhone has no way yet to manually correct for miscoded pages via a View > Text Encoding menu.

  • RTF non keyboard character missing

    When I export the RTF from the application file  non-keyboard character (symbol and mathematical pi fonts) converted in to square boxes.
    How to fix this issue.
    Please advice.

    becks wrote:
    URLencoder is java.Yeah I know.
    Just wondering how other people do it as well? I feel that should not let users copy paste those funny character into the system.Well it's not a very good system if it doesn't support Unicode. It's not that big an effort after all. Of course if you're not familiar with character encoding and unicode, I recommend you read this:
    http://www.joelonsoftware.com/articles/Unicode.html

  • We cannot type Polish (non-latin) characters in WebDynpro applications

    We cannot type Polish (non-latin) characters in WebDynpro application (in runtime) because 'Browser Help Shortcuts' are fired.
    To type a polish character in polish keyboard you need to press AltGr + letter (ie. AltGr + a/c/e/s/o/l/z/x/n). To type an uppercase polish character you need to press AltGr + Shift + letter. This comination is in fact the same as pressing Alt + Ctrl + Shift + letter (because AltGr produces Alt + Ctrl) and it fires some of 'Browser Help Shortcuts'. For example AltGr + Shift + O should produce a letter O with a dash on it's top but instead it fires 'Show nesting of HTML containers'.
    We tried to turn off sap-wd-lightspeed, but then other key combinations are reserved for u2018Browser Help Shortcutsu2019.
    We need to be able to use AltGr + Shift + a/c/e/s/o/l/z/x/n in runtime.
    Product: SAP NW 7.11 SP04
    WebDynpro for Java
    I hope there is a somewhere a hidden parameter that solves our problem Maybe we're in some kind of debug mode?
    Thanks for your help!!

    The funny thing is that bold font [when message unread in message list] shows OK, ie in greek, but when i click on unread message, it is assumed to have been read, so it changes over to medium [non bold] and the encoding changes as well into the one that is not greek and thus unreadable.  In ~/.sylpheed/sylpheedrc the fonts are:
    widget_font=
    message_font=-microsoft-sylfaenarm-medium-r-normal-*-*-160-*-*-p-*-iso8859-7
    normal_font=-monotype-arial-medium-r-normal-*-12-*-*-*-*-*-iso8859-7
    bold_font=-monotype-arial-bold-r-normal-*-12-*-*-*-*-*-iso8859-7
    small_font=-monotype-arial-medium-r-normal-*-12-*-*-*-*-*-iso8859-7
    In /etc/gtk, for gtk1.2 apps the file refering to greek encoding [el] seems to be fine [exactly the same as in slackware 9.1].

  • How to send non-latin unicode characters from Flex application to a web service?

    Hi,
    I am creating an XML containing data entered by user into a TextInput. The XML is sent then to HTTPService.
    I've tried this
    var xml : XML = <title>{_title}</title>;
    and this
    var xml : XML = new XML("<title>" + _title + "</title>");
    _title variable is filled with string taken from TextInput.
    When user enters non-latin characters (e.g. russian) the web service responds that XML contains characters that are not UTF-8.
    I run a sniffer and found that non-printable characters are sent to the web service like
    <title>����</title>
    How can I encode non-latin characters to UTF-8?
    I have an idea to use ByteArray and pair of functions readMultiByte / writeMultiByte (to write in current character set and read UTF-8) but I need to determine the current character set Flex (or TextInput) is using.
    Can anyone help convert the characters?
    Thanks in advance,
    best regards,
    Sergey.

    Found tha answer myself: set System.useCodePage to false

  • New mail applications/reading mails in non-latin alphabet foreign languages

    I work with China and Korea a lot. And I receive emails in Korean and Chinese language.
    How do I allow my mail to read emails in Korean and Chinese. I have a friend who can read his iPhone emails in Japanese but I cannot read my iPhone emails in Korean and so I wonder if he has some kind of setup thats different than me.
    Also, I am curious to know some opinions about any other mail applications for Mac that anyone can suggest and reasons why they prefer it over the standard mail application, if they do at all.
    Thanks
    Dan

    I cannot read my iPhone emails in Korean and so I wonder if he has some kind of setup thats different than me.
    If your problem relates to the operation of your iPhone, please use this forum instead:
    http://discussions.apple.com/forum.jspa?forumID=1139
    The iPhone lacks various language capabilities which are in the full OS X. I think emails may have to be in UTF-8 encoding to be received correctly.
    If you have problems reading non-latin emails in the full OS X, let us know. Usually they can be solved by switching the encoding in Message > Text Encoding.

  • Non-latin utf-8 characters on ssh host displayed as "???" in terminal

    Both the client and the host use the same locale: en_US.UTF-8
    I can input non-latin just fine but the resulting string appears in the terminal as question marks (e.g. "touch 表示してくれ; ls" gives me "??????????????????"), however if I check the same string with my SFTP client (Filezilla), the strings appears as intended so the character encoding seems to be handled correctly.
    I'm using "gnome-terminal" on my client, in case that makes any difference (terminal parameters: on the client: TERM="xterm" and COLORTERM="gnome-terminal"; on the host: TERM="xterm").
    Also, am I correct in assuming that I don't need to have any fonts installed on the host, as that's irrelevant to ssh?
    UPDATE: I noticed a "cat" on a utf-8 text file on the ssh host shows the characters correctly, but looking at the same file through "nano" shows garbled characters. On my local machine (with practically identical Arch software versions) on the other hand, both "cat" and "nano" show files with these characters correctly.
    Last edited by Lazar (2010-09-19 15:13:59)

    Hi,
    Like BluShadow I'm curious to see a test case...
    Depending on the way it's been created, the encoding declared in the XML prolog doesn't necessarily reflects the actual encoding of the content.
    What's your database character set, and version?
    Please also post the error message you get (LPX-00200 probably?).

Maybe you are looking for

  • Error in BAPI RETURN for Service Contract

    Hi,   I get an error in the BAPI Return for the Uploading the Service Contracts by LSMW. The Error Message is E BS No status object is available for &.Also want to know can we upload multiple line of header text for a Contract by this BAPI. If so the

  • Does Mobile Me shut down features in iWeb 08 after it expires?

    My problem, iWeb publishes a ? mark where the video should be. Hi everybody. Since I quit Mobile Me ( i just had enough of the speed complaints), all my icons for each page inside iWeb are red, regardless if they were worked on or not. Also, i just t

  • How to resolve patch dependencies on Solaris  8 or 9

    Hello, I need to apply some Solaris patches but these particular patches have other patch dependencies. Can anyone please advise in which order should I install these patches. I am aware of patchadd will install a patch(es) but I just need to know th

  • Load SMP.swf in other .swf and pass parameters to it

    Hello, I am able to load the StrobeMediaPlayback.swf within my main .swf application, but I have no idea how to mimic the flashvars behaviour : how can I provide it with the source of the video wanted, etc ? Thx

  • Is icloud part of ios8?

    I'm rather new at this, but I don't remember using icloud before downloading ios 8.  Now it seems to be necessary.  Tell me if I am on the wrong track.  I haven't accepted icloud terms and conditions thinking I didn't need icloud, But since I keep lo