Locale-Sensitive Java Method
java.io.DataOutputStream
public void writeBytes(String s)
Internationalization (I18n) Method Overview
The writeBytes method writes out the string to the underlying
output stream as a sequence of bytes.
For more information click
here.
I18n Issues
If the string parameter to writeBytes contains non-English characters,
then each character requires more than a single byte.
Suggested Replacement
Call either writeChars or writeUTF to preserve Unicode characters.
Locale-Sensitive Java Methods
|