is there any free java library which i can use to convert string in one encoding to other encoding, something like icnov in php? i'm using java version 1.3
|
feedback
|
|
You don't need a library beyond the standard one - just use Charset. (You can just use the String constructors and getBytes methods, but personally I don't like just working with the names of character encodings. Too much room for typos.) EDIT: As pointed out in comments, you can still use Charset instances but have the ease of use of the String methods: new String(bytes, charset) and String.getBytes(charset). | |||||||||||||
feedback
|
|
Many network protocols and files store their characters with a byte-oriented character set such as See
This example demonstrates how to convert
| |||||||||
feedback
|
|
It is a whole lot easier if you think of unicode as a character set (which it actually is - it is very basically the numbered set of all known characters). You can encode it as UTF-8 (1-3 bytes per character depending) or maybe UTF-16 (2 bytes per character or 4 bytes using surrogate pairs). Back in the mist of time Java used to use UCS-2 to encode the unicode character set. This could only handle 2 bytes per character and is now obsolete. It was a fairly obvious hack to add surrogate pairs and move up to UTF-16. A lot of people think they should have used UTF-8 in the first place. When Java was originally written unicode had far more than 65535 characters anyway... | |||
|
feedback
|