09-06
12
输出文件乱码解决办法BufferedWriter
作者:Java伴侣 日期:2009-06-12
请参考下面的程序44
复制内容到剪贴板
程序代码

String fileName="C:\text",
String content="問題怎么解決﹖汉字の本"
String strEncode="UTF-8"
BufferedWriter writer = null;
try {
File file = new File(fileName);
createFolders(file.getParent());
writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), strEncode));
writer.write(content);
writer.flush();
} catch (IOException e) {
System.out.println(e);
return false;
} finally {
try {
writer.close();
} catch (IOException e) {
e.printStackTrace();
}
}
String content="問題怎么解決﹖汉字の本"
String strEncode="UTF-8"
BufferedWriter writer = null;
try {
File file = new File(fileName);
createFolders(file.getParent());
writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), strEncode));
writer.write(content);
writer.flush();
} catch (IOException e) {
System.out.println(e);
return false;
} finally {
try {
writer.close();
} catch (IOException e) {
e.printStackTrace();
}
}
[本日志由 blurxx 于 2009-06-26 11:19 PM 编辑]




评论: 0 | 引用: 0 | 查看次数: 2997
发表评论