If you save Chinese words in file.
You don't need to convert it to UTF-8.
Just like-
String tmp = new String("大家好");
os.write(tmp.getBytes());
P.S os is OutputStream object
If you read some string from a chinese file
byte[] text = new byte[10];
is.read(text); //is is InputStream
String outtext = new String(text,"Big5");
// You need to new a String using Big5 Encoding
System.out.println(outtext);
[ October 08, 2004: Message edited by: Xua Hsin Lin ]