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?

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 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.

  • Need Help! Traditional chinese characters not well in Adobe Reader on Win 7

    We receive pdf fiels from our partner and it has gone well. After we upgrade our client OS to Windows 7. The traditional chinese charcters become some kinds of symbol. But it shows well in Windows XP with the same version 9 of Acrobat reader. Here is the font propriety of the pdf:
    Any idea?

    Do you have the Asian Font Pack for Adobe Reader 9 installed?

  • 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

    My Blackberry Style will not show traditional Chinese characters.  They just appear as black squares.   Can I fix this?

    Hi and Welcome to the Community!
    It all depends on the OS that you are running on your BB...there are different versions for different languages to use. Start here:
    KB05305Localization support for BlackBerry smartphones
    You will need to obtain and install the proper OS, one that contains the language(s) you desire. 
    To install, the simplest way is to, on a PC (you cannot do this on MAC):
    1) Uninstall, from your PC, any BB OS packages
    2) Make sure you have the BB Desktop Software already installed
    http://us.blackberry.com/apps-software/desktop/?lid=us:bboftwareesktopSoftware&lpos=us:bboftware
    3) Download and install, to your PC, the BB OS package you desire:
    http://us.blackberry.com/support/downloads/download_sites.jsp
    4) If that OS package is from a carrier other than the carrier for which your BB was originally manufactured, then delete, on your PC, all copies of VENDOR.XML...there will be at least one, and perhaps 2, and they will be located in or similarly to (it changes based on your Windows version) these folders:
    C:\Program Files (x86)\Common Files\Research In Motion\AppLoader
    C:\Users\(your Windows UserName)\AppData\Roaming\Research In Motion\BlackBerry\Loader XML
    5) Launch the Desktop Software and connect your BB...the software should offer you the OS package you installed to your PC. If, during the process, your BB presents a "507" error, simply unplug the USB cord from the BB and re-insert it...don't do anything else...this should allow the install to continue.
    Don't forget to backup.
    If you are on MAC, you are limited to only your carriers sanctioned OS packages...but can still use any levels that they currently sanction. See this procedure:
    KB19915How to perform a clean reload of BlackBerry smartphone application software using BlackBerry Desktop Software
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • 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

  • 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"

  • 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.

  • Captivate 5.5 pasted Traditional Chinese characters don't render correctly

    Hi,
    I've been trying to cut-and-paste Traditional Chinese characters from PowerPoint (where they render perfectly) into Captivate, but they only get rendered partially. Here is an example
    From PPT:
    After pasting into Captivate:
    What could be going on here? Obviously, the Win7 system can render the characters correctly, but why don't they all display in Captivate?
    Thanks for any assistance,
    Andy

    Yeah. I've done that so many times it boggles my mind. Thanks but no star for you on this one, sorry.

  • 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

Maybe you are looking for