我在使用 utf-8 编码读取文本文件时遇到问题我正在使用带有 netbeans 7.2.1 平台的 java
我已经配置了java项目来处理UTF-8 javaproject==>右键==>properties==>source==>UTF-8
但仍然得到未知字符输出:���� �������� ���� �</p>
编码:
File fileDirs = new File("C:\\file.txt");
BufferedReader in = new BufferedReader(
new InputStreamReader(new FileInputStream(fileDirs), "UTF-8"));
String str;
while ((str = in.readLine()) != null) {
System.out.println(str);
}
还有其他想法吗?
谢谢