我有一个java程序,它保存一个文本文件,然后在对话框中输出它的内容。 当我运行程序在我的IDE(BlueJ)中时,显示如下:
正如您在对话框中看到的那样,“1º)Mónica”线正确显示
但是当我在IDE中运行相同的程序 时,“Mónica”显示不正确,如图所示:
如何解决此问题以始终显示正确的输出?
这是将文本文件读取为字符串
的代码public String recordesString()
{
Premios premios = new Premios();
File recordes = new File("recordes.txt");
if(!recordes.exists()) {
if(!client.isConnected())
openFTPSession();
downloadRecordes(); // this downloads the recordes.txt file
}
Scanner s = null;
try {
s = new Scanner(recordes);
} catch (Exception e) {
e.printStackTrace();
}
String string = "";
String linha = null;
for(int i = 1; s.hasNext(); i++) {
linha = s.nextLine();
String palavra[] = linha.split(" ",2);
string += i+"º) "+palavra[1] +" "+ premios.getPremio(Integer.parseInt(palavra[0]))+"\n";
}
s.close();
try {
Files.deleteIfExists(Paths.get(ficRecordes));
} catch (Exception e) {
e.printStackTrace();
}
return string;
}
答案 0 :(得分:3)
扫描程序使用底层平台的默认字符集读取文件。
请参阅http://docs.oracle.com/javase/7/docs/api/java/util/Scanner.html#Scanner(java.io.File)
我希望文件以UTF-8编码,当你在IDE外部运行时,默认字符集是ISO-latin-1左右。如果在创建扫描程序时指定文件的编码,则结果将是可预测的。
s = new Scanner(recordes, "UTF-8");