作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用 java 以 UTF-8 格式保存文本文件时遇到问题。当我单击生成的文本文件的“另存为”时,它给出 ANSI 文本格式,而不是 UTF-8。以下是我在创建文件时编写的代码:
String excelFile="";
excelFile = getFullFilePath(fileName);
File file = new File(excelFile + fileName,"UTF-8");
File output = new File(excelFile,"UTF-8");
FileUtils.writeStringToFile(file, content, "UTF-8");
在创建文本文件时,我使用 UTF-8 编码,但文件在保存时仍将编码显示为 ANSI。请帮忙。
最佳答案
不使用文件,而是创建 FileOutputStream。试试这个。
Writer out = new BufferedWriter(new OutputStreamWriter(
new FileOutputStream("outfilename"), "UTF-8"));
try {
out.write(aString);
} finally {
out.close();
}
关于java - 如何在java中以UTF-8编码保存文本文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40337344/
我是一名优秀的程序员,十分优秀!