Avatar
1
monkey Enlightened
monkey Enlightened
Ghi file csv ở dạng Shift JIS
Example: <p> </p> <pre> public class OutputSjis { private final static byte CR = 0x0d; // 13 private final static byte LF = 0x0a; // 10 public static void main(String[] args) { output(); } /** * sjisファイル出力処理 * 参考サイト * &ltli&gthttp://www.ne.jp/asahi/hishidama/home/tech/java/files.html */
Answer