Chinese Characters Not Showing On Zen Ne

Hi, those who are using Zen Neeon or have solutions to my problems, please do help.
Chinese characters are not showing on my Zen Neeon.
When I used the Zen Neeon Media Explorer or Creative Mediasource to rip songs from CDs, chinese characters appear perfectly fine. It's also fine when I used Windows Media Player to rip.
However, once the songs are transferred to the player, chinese characters can't be read when they are playing. They can be read when I view them as 'playlists' on the player, but the Chinese song titles appear as funny characters on the LCD when the songs are playing.
I have changed my computer's non-unicode to 'Chinese PRC'. So I really don't know what's wrong.
Please help.
Thanks!

It is actually the language of the tag of the song that matters, not the language of the song itself. If the song has Chinese tag, then the language must be set to Chinese. Setting the language to Chinese will not affect songs that has English tag. So, if you have only English tag songs and Chinese tag songs, then setting the language to Chinese will work for both. However, if you have Chinese tag songs and Japanese tag songs, then you need to set the language accordingly, depending on whether you are transferring Chinese tag songs or Japanese tag songs.

Similar Messages

  • Chinese Characters not showing in Design View

    Version: DW MX 2004
    I have a file I created in FrontPage and am now migrating
    over to DW. Most of the language on the page is English, with a
    portion of Chinese.
    My Chinese characters do not show up in Design View, but when
    I preview or upload the page to the server (live), they show up ok
    in IE and FF. Everything worked fine in FrontPage.
    Why can't I see them in Design View? I have looked in the
    Help for languages, character sets, etc.

    Once again, no one seems to know much about this question.
    (I've noticed it's gone unanswered in previous years.)
    In the Knowledgebase, I find only this: "Encoded HTML
    documents created outside of Dreamweaver may not display correctly
    in Dreamweaver. This includes documents that have been hand-coded
    or created in another HTML editor."
    This was updated in March, 2006.
    Which leads me to say, bugger. I guess there's little point
    in accommodating those 1.2 billion Chinese.

  • Why Chinese characters not showing up in JLabel correctly , sometimes ?

    I have a large program which uses a JLabel to display some Chinese characters in html, it was doing fine until the program grew larger and larger, then only html fonts in certain sizes will show up correctly, other sizes of the same fonts will show up as rectangles. It's not because it doesn't have these fonts, but it seems to be related to the complexity of the program. If I change the characters in rectangles to a different size ( smaller or larger ), they might show up correctly again (in the large program).
    I have a small test program below to see if a particular font size would show up correctly, they all showed up fine in this test, but if I try to display the same html in my large program, some sizes of characters will go wrong. I've even printed out the unicode and looked at them (6309 4f60 7684 9700 8981 ...), they are definitely in the Chinese character range.
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class Java_Test extends JPanel
      static int Total=900;
      JComboBox ComboBox_Array[]=new JComboBox[Total];
      Font Times_New_Roman_15_Font=new Font("Times New Roman",0,15);
      static int Small_Chinese_Font_Size=3;
      static String Software_Info_Chinese_Text="<Html><Table Width=100% Border=0 Cellpadding=2 Cellspacing=3><Tr><Td Align=Center><Font Size=6 Color=#3737FF>[ \u4EA7\u54C1\u7BA1\u7406 ] </Font></Td></Tr>"+
                                               "<Tr><Td Align=Center><Font Size=5 Color=green>\u5E2E\u52A9\u4F60\u7BA1\u7406\u4EA7\u54C1, \u5408\u540C, \u53CA\u5176\u5B83\u4FE1\u606F :</Font></Td></Tr>"+
                                               "<Tr><Td>\u8F93\u5165<Font Size="+Small_Chinese_Font_Size+" Color=#2255BB>"+
                                                 "<li>\u8F93\u5165, \u7EF4\u62A4\u548C\u6253\u5370\u8BE6\u7EC6\u4EA7\u54C1\u53CA\u4F9B\u8D27\u5546\u4FE1\u606F<Br>"+
                                                 "<li>\u5730\u5740\u548C\u5907\u6CE8\u4FE1\u606F\u53EF\u7528\u591A\u79CD\u8BED\u8A00\u8F93\u5165<Br>"+
                                               "</Font></Td></Tr>"+
                                               "</Table></Html>";
      JPanel Main_Panel=new JPanel();
      static boolean Exit_When_Window_Closed=false;
      Java_Test(String Test_String)
        for (int i=0;i<Total;i++) ComboBox_Array=new JComboBox();
    JLabel A_Non_English_Label=new JLabel(Test_String);
    A_Non_English_Label.setFont(Times_New_Roman_15_Font);
    A_Non_English_Label.setForeground(Color.BLUE);
    add(A_Non_English_Label);
    setPreferredSize(new Dimension(600,300));
    void Show_Up()
    Main_Panel.add(this);
    Dimension Screen_Size=Toolkit.getDefaultToolkit().getScreenSize();
    final JFrame frame=new JFrame("Java Test");
    frame.add(Main_Panel);
    frame.addWindowListener(new WindowAdapter()
    public void windowClosing(WindowEvent e) { if (Exit_When_Window_Closed) System.exit(0); }
    public void windowDeiconified(WindowEvent e) { Main_Panel.repaint(); }
    public void windowGainedFocus(WindowEvent e) { Main_Panel.repaint(); }
    public void windowOpening(WindowEvent e) { Main_Panel.repaint(); }
    public void windowResized(WindowEvent e) { Main_Panel.repaint(); }
    public void windowStateChanged(WindowEvent e) { Main_Panel.repaint(); }
    frame.pack();
    frame.setBounds((Screen_Size.width-Main_Panel.getWidth())/2,(Screen_Size.height-Main_Panel.getHeight())/2-10,Main_Panel.getWidth(),Main_Panel.getHeight()+50);
    frame.setVisible(true);
    Main_Panel.updateUI();
    static void Out(String message) { System.out.println(message); }
    public static void main(String[] args)
    Exit_When_Window_Closed=true;
    new Java_Test(Software_Info_Chinese_Text).Show_Up();
    final Java_Test demo=new Java_Test(Software_Info_Chinese_Text);
    Dimension Screen_Size=Toolkit.getDefaultToolkit().getScreenSize();
    final JFrame frame=new JFrame("Java Test");
    frame.add(demo);
    frame.addWindowListener(new WindowAdapter()
    public void windowClosing(WindowEvent e) { System.exit(0); }
    public void windowDeiconified(WindowEvent e) { demo.repaint(); }
    public void windowGainedFocus(WindowEvent e) { demo.repaint(); }
    public void windowOpening(WindowEvent e) { demo.repaint(); }
    public void windowResized(WindowEvent e) { demo.repaint(); }
    public void windowStateChanged(WindowEvent e) { demo.repaint(); }
    frame.pack();
    frame.setBounds((Screen_Size.width-demo.getWidth())/2,(Screen_Size.height-demo.getHeight())/2-10,demo.getWidth(),demo.getHeight()+38);
    frame.setVisible(true);
    I called this test program from my large program, and it won't display correctly, it will only display all sizes of characters correctly if I run the test program by itself.
    I've posted a similar question in Java/Swing but got no answer. So I'm trying it here. The above test program will compile and run, it can display all sizes of html fonts correctly.Which means it's not lacking any fonts. I've even tried the following in my large program :
    dialog.validate();
    dialog.repaint();
    pane.validate();
    pane.repaint();
    pane.updateUI();
    A_Label.validate();
    A_Label.repaint();
    A_Label.updateUI();
    Still doesn't work, does anyone know why and how to fix it ?
    Frank                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    I've just made a breakthrough, the large program will work correctly if I comment out : A_Non_English_Label.setFont(Times_New_Roman_15_Font);
    But then the font doesn't look the way I wanted it to be.
    So I changed it to the following :
    ================================================
    Font Courier_New_15_Font=new Font("Courier New",0,15);
    A_Non_English_Label.setFont(Courier_New_15_Font);
    ================================================
    Now it looks not the same but similar to the way I wanted. Thus my question becomes : why it can't work correctly with "Times_New_Roman", but with "Courier_New" in the large program, they both displayed correctly in my small test program ? Is it because it takes too much resource to load the "Times_New_Roman" font ?
    Frank

  • Chinese characters not showing

    i just installed itunes on my new PC windows 7. the chinese music files show up just fine on my computer browser but when i add them into itunes, the characters all show up funny unidentifiable. please help resolve this problem. thanks:)

    just restarted and everything is ok. strange

  • Chinese characters not showing [through AIRSQL]

    i would to assume that there's ANISI vs UTF8 issue here but don't have a clue where i can go to tweak this.
    (trying to implement chinese(mandarin) names in the adobe employee directory but i only get ???? instead)
    Any Ideas?

    It is actually the language of the tag of the song that matters, not the language of the song itself. If the song has Chinese tag, then the language must be set to Chinese. Setting the language to Chinese will not affect songs that has English tag. So, if you have only English tag songs and Chinese tag songs, then setting the language to Chinese will work for both. However, if you have Chinese tag songs and Japanese tag songs, then you need to set the language accordingly, depending on whether you are transferring Chinese tag songs or Japanese tag songs.

  • Traditional Chinese Characters Not Showing

    I am using iTunes 8.0 and imported my songs into iTunes. The titles with simplified chinese are able to show up but those with traditional characters showed up as strange characters.
    The songs were imported from another PC with Windows Vista, the titles and tags are all in proper there. I just copied the songs from that PC to my MSI Wind.
    Anyone can help out with my problem?

    tried the software you recommended but it did not help. the characters are all jumbled up in the first place.
    i did not do any changes to the tags when i copied to my MSI Wind. the tags are all right on my original PC, what could have went wrong?

  • Arabic and Chinese characters are showing ??? in PDF

    Hi
    I hava an application which calls BI publisher API to generate PDF file from rtf temlate and xml input. It is fine for English contents. But the Arabic or Chinese characters are showing ??? in PDF. If I use BI publisher Desktop to load the xml and generate pdf file, it shows correct Arabic/Chinese Characters in PDF. I also copied ALBANWTJ.ttf file to my application JAVA_HOME/jre/lib/fonts/ folder. But it still doesn't work. Anyone can help me with this?
    Thanks a lot!

    I created xdo.cfg and put it in my JAVA_HOME/jre/lib/ folder. the file is configured as below:
    <?xml version="1.0" encoding="UTF-8"?>
    <config version="1.0.0" xmlns="http://xmlns.oracle.com/oxp/config/">
    <properties>
    <property name="system-temp-dir">/tmp</property>
    </properties>
    <fonts>
    <font family="Default" style="normal" weight="normal">
    <truetype path="/fonts/ALBANWTJ.ttf"/>
    </font>
    </fonts>
    </config>
    But now I'm getting this error while generating pdf file:
    Adobe Reader could not open 'xxx.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).
    Is there anything wrong in my xdo.cfg?
    Thanks!

  • Chinese characters dont show up on the PDF file

    Hi guys,
    Chinese characters dont show up on the PDF file. Its #.
    Please let know how to fix it.
    Thanks!

    Hi,
    I am the facing same problem as you were faced. I am not able to print chinese characters in PDF as it is coming properly in print preview.
    I am sendig this document via email.]
    Pleae help me if any solution with you.
    Thansk and Regards,
    J.P

  • Certain characters not showing

    I'm having a problem with certain characters not showing on Safari. Some websites are okay, but others, like Livejournal and babynames.com, only show about four characters per word. On some message boards, certain characters such as parentheses and capital L do not show up when I type them, but show up fine on the completed post.
    What is going on? Do I need to download a new copy of Safari, switch to Firefox, or can this be fixed?
    Thanks!

    Apparently it's getting worse. There are eight more letters that don't appear.

  • The pdf chinese characters not display (11G  WLS_PERORTS)

    My Database:TRADITIONAL CHINESE_TAIWAN.AL32UTF8
    Environment:xp
    According to:http://docs.oracle.com/cd/E24269_01/doc.11120/e24479/pbr_pdf002.htm#BABCCEAB
    C:\Oracle\Middleware\asinst_1\config\FRComponent\frcommon\tools\COMMON\uifont.ali
    add a row
    [ PDF ]
    .....AL32UTF8 = "MSungStd-Light-Acro"
    But the pdf chinese characters not display,Why??
    http://ppt.cc/h-Tx

    kindly, make sure that you add the font path into your FORMS_PATH in regestery (if you are using windows) also put your font mapping ubder [ PDF:Subset ]
    for example:
    [ PDF:Subset ]
    times = "Barcd39.ttf"
    Arial..italic.Bold.. = "arialbi.ttf"
    Arial..italic... = "ariali.ttf"
    Arial...Bold.. = "arialbd.ttf"
    Arial = "arial.ttf"
    "Andale Duospace WT J" = "Aduoj.ttf"
    "Albany WT J"="AlbanWTJ.ttf"
    "Arabic Transparent"="artro.ttf"

  • International characters not showing up correctly in Podcast Title-Is UTF-8

    In the 'Podcast Information' window that pops up, the Episode title is not getting rendered correctly but the details show up fine. Both have chinese characters.
    Any pointers for resolving this would be appreciated.

    If sometimes it works, and sometimes it doesn't, then there must be a difference in the way you are doing it. And you can work out what's happening from analyzing what you're doing when it works compared with what you're doing when it doesn't work.
    For example, if you type the description into the blogging software, you might just be typing the ' key. While some writing software (word for example) will automatically turn on smart quotes which your blogging software will be escaping into HTML code. The character ' doesn't need escaping, but smart quotes do.
    Hope this helps,
    Greg

  • Chinese sign not showing

    Hello.
    First sorry about my english. I hope you can understand what my problem is. Its not that easy to explain.
    If got an SWT label on which a chinese text should be shown (i don't know how i can make you see the real chinese characters).
    Text: ���� �� �������� (Unicode for the signs: 4F60 597D "Space character" 732A "Space character" 77BB 671B 6765 672A)
    The source file in which the label is created looks like this:
    label.setText("���� �� ��������");I compile the source and look at the generated *.class file. It shows the line above as follows:
    label.setText("\u4F60\u597D \u732A \u77BB\u671B\uFFFD?\uFFFD\u672A");The problem is that the sign �� (the second one from right) with unicode 6765 is not compiled correctly. The *.class file shows \uFFFD?\uFFFD instead of \u6765
    When I run the code all characters are shown correctly except this one: �� (unicode 6765)
    I had a look at [http://www.unicode.org/charts/PDF/U4E00.pdf] . I can find all signs in this table. Also the "corrupted" sign ��
    My compiler options are:
         <property name="javac.srcdir" value="src" />
         <property name="javac.tmpsrcdir" value="tmpsrc" />
         <property name="javac.destdir" value="bin" />
         <property name="javac.target" value="1.1" />
         <property name="javac.source" value="1.2" />
         <property name="javac.debug" value="off" />
         <property name="javac.deprecation" value="off" />
         <property name="javac.encoding" value="UTF-8" />
         <property name="javac.optimize" value="on" />
         <property name="javac.excludes" value="" />
    Can anybody help me. I don't know whats wrong with this sign/character.
    Edited by: Zodi on Mar 13, 2008 8:00 AM

    Zodi,
    Your english is very good, there is no need to appologise.
    Are you sure that your source file is encoded as UTF-8?
    Are you sure that the ant property for the encoding is actually making it through to the compiler?
    I would try compiling from the command line and checking what happens.
    What version of java are you using? = because there was a decoding bug in very early (pre beta) versions of JDK6 (and presumably earlier versions) that might contribute to this (http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6392804) if you are not using JDK 6.
    If you can't isolate the issue, you could put unicode literals in your source code rather than the actual chinese text.
    label.setText("\u4F60\u597D \u732A \u77BB\u671B\u6765\u672A");Bruce

  • Chinese characters not shown correctly

    Hi there,
    I am having a problem with Chinese characters being correctly copied from a Word document into a Premiere Pro CS5 title. I am working with a Master Collection CS5 64-Bit on Windows 7.
    This is how the Chinese text  looks like in the Word document. Btw, the characters are correctly shown when being copied into Photoshop64bit. Just not when copied into my Premiere Pro title. So I guess my system has all the necessary tools available.
    操作1 – 预换模
    And this is how the text looks in my Premiere Pro title. Just that the two cubes are empty, only with the border.
    操作1 – &#127;&#127;模
    I couldn't find information on that in the help area.
    No matter what the Chinese means, I don't speak Chinese.
    Does anyone could give me a hint how to solve the problem? First choice recommendations warmly welcome :-) Only second choice would be creating a picture file and putting it in a videolayer. No good solution with many titles.
    Thank you!
    Oliver

    Oliver,
    The Titler is about the most font-sensitive program (or sub-program), that Adobe produces. It is more sensitive, than say Photoshop, Illustrator or InDesign, and those three programs are much more font-sensitive, than say a word processing program, like Word. It also needs for fonts to be 100% compatible, and not all are. Some will just not display in Titler, where they might in other programs.
    The first thing that I would look into is the exact Chinese font that you have. If there is not a perfect, compatible free font, that is very, very similar, then I would look into one of the larger foundries, and buy something that is very close.
    Another fix could be to just use Photoshop (you say that it handles the font properly), and create your Title there. Save that Image as a PSD, and Import that Still Image into PrPro to be used as a Title. With complex Titles, I often use a combo of PS and AI, and Save my creation as a PSD. PrPRo loves PSD's, and I have never had an issue.
    As a side-note on fonts, I have found quite a few, and many are popular ones, that just flat will not display in PS, AI, InDesign or Titler - many versions of Isabelle and Isabella (do not know why two fonts with such similar names would both be problematic?), just will not display. One gets strings of squares, where most other programs handle and display them perfectly. It's all about the exact font.
    Good luck,
    Hunt

  • Chinese Characters not displaying properly

    I pasted Chinese text into a Rolling title but not all of the characters display.  Some (not many) of them display as an x inside of a square.  All I can think is that some of the characters are not being recognized. If it matters, the text is simplified Chinese copied from a website, pasted into Notepad, then copied again and pasted into the title.
    Help is greatly appreciated.

    John,
    I see that now, but the font I selected (simsun) seems to have resolved my issue. I believe it is a bug if I can display the characters correctly on other app, especially Microsoft.  On Microsoft apps, I can select many standard fonts and the Chinese Characters display correctly.
    Thank you for the link to submit a bug report. When I get time I will submit it, and hopefully they will correct the issue. 
    God Bless,
    Mark

  • Chinese Characters not displaying

    I am creating a pdf document containing Chinese Characters. The document renders fine for me. I email it to my colleague in China and when she opens the document everything is there in the document except the Chinese Characters. The graphs (survey data), and all the English text render as expected but every bit of Chinese is stripped out. She emailed the document back to me and sure enough all the Mandarin is missing. I am positive that when I send the document by email the characters are there.
    I also posted the document on the web thinking that some email gremlin was the cause. When my colleague views this document she tells me no  Chinese Characters are visible.  Ideas appretiated. -MikeT

    Now my English pdf docs are not arriving intact (pages and fonts missing). How do I embed fonts in an existing PDF document? Is that possible? Or, did embedding have to happen at the time of creation? -MikeT

Maybe you are looking for

  • Actual Benefits of final methods and final parameters

    I know that a lot of this depends on the JVM and the actual code, but I was wondering what the actual real world advantage was of using final methods and final parameters. I use a business and data layer for my program to interact with the database.

  • CRM Email Tracking - read emails

    Hi, Can someone tell me how / whether you can track which emails have been read when you send an email campaign?  I understand how the /## can be used to track click throughs on links placed in the email but how can you track whether someone reads so

  • 10.4 update, cd/dvd stopped working

    Upon installing the 10.4 update my dvd drive has now stopped recognizing discs. I don't think it's even spinning. I fixed disk permissions via Disk Utility and restarted (several times) but still nada. Any ideas? It was working perfectly just seconds

  • Backup all Z reports

    HI Experts,                 my DEV server will undergo updation. so I need to take backup of all my Z reports. Should I save them to my local hard disk with all functionalities. How do I do. Is it possible. So that when DEV server is ready I can agai

  • Can't get Mic to work in Ventrilo

    ! OS:?? Windows XP SP3 Sound card: Creative Sound Blaster X-Fi Fatalty Headset:? Sennheiser PC-350 Creative driver:? 2.8.003 Ventrilo version: 3.0.5 Problem: I'm using the I/O Dri've front panel to plug in my headset. The mic works in Windows - I can