Wiki Markup |
---|
Every Java platform has a default character encoding. The available encodings are listed in the Supported Encodings document \[[Encodings 2006|AA. Java References#EncodingsBibliography#Encodings 06]\]. The default encoding is used when a character is converted to a sequence of bytes and _vice versa_. If characters are converted into an array of bytes to be sent as output, transmitted across some medium, input and converted back into characters, then the same encoding must be used on both sides of the conversation. |
...
Wiki Markup |
---|
\[[Encodings 2006|AA. Java References#EncodingsBibliography#Encodings 06]\] |
...
FIO02-J. Keep track of bytes read and account for character encoding while reading data 09. Input Output (FIO) FIO04-J. Canonicalize path names before validating