export to unicode csv

hi i need help on exporting to unicode csv, I already have a java program that export to csv file but when i set my computer to chinese language and export to csv, the csv file doesnt show the chinese character. I know if i open my csv with notepade and resave it choosing unicode, it will display the chinese character.

Is there a way to export directly to unicode csv ? I appreciate it if you have some sample java code just to set the unicode. Please advice thanks.

[481 byte] By [Btreksuna] at [2007-11-27 6:26:26]
# 1
> Is there a way to export directly to unicode csv ?OutputStreamWriters take the encoding to use as a parameter. Use them around a FileOutputStream (and maybe inside a BufferedWriter).
CeciNEstPasUnProgrammeura at 2007-7-12 17:47:15 > top of Java-index,Java Essentials,New To Java...
# 2
thanks I will try your method
Btreksuna at 2007-7-12 17:47:15 > top of Java-index,Java Essentials,New To Java...