is iso-8859 supports for latin character are i need to use iso-8859-1 in java program to read file in chinese character,and what is the difference between this
|
feedback
|
|
ISO-8859 is a standard for 8-bit character encodings. 8 bits give you 256 combinations which is OK for most extensions of the Latin alphabet but not for Chinese characters. ISO-8859-1 is one of the "versions" of ISO-8859 supporting most Western-European languages (French, German, Spanish,...). For Central-European languages (Polish, Czech, Slovak,...) you need ISO-8859-2, etc. One of the different points between ISO-8859-1 and ISO-8859-2 is the French letter Now with the Unicode it is possible to combine Chinese characters too. | |||||||||||
feedback
|
|
There are several encodings available for chinese (e.g. simplified and traditional). See
http://download.oracle.com/javase/6/docs/technotes/guides/intl/encoding.doc.html for a list.
The most common ones are | |||
|
feedback
|