Troubles With Unicode String Encoding In Android
I get strings in different encodings (ID3 tags). I use e.g. new String( bytes, 'UTF-16LE' ) to decode them. On my device (Motorola Milestone) and in the emulator, this works fine.
Solution 1:
if you want to know whether they have the Charset on their device, try getting them to download "Dalvik Explorer" from the Market, and check to see that the ones you need are actually available.
(do you know their ID3 tags are valid? do you know your parser is choosing the right encoding? i wrote my own ID3 tag parser because i couldn't find one that was correct.)
Post a Comment for "Troubles With Unicode String Encoding In Android"