我对java相当陌生。我现在正在制作一个基于文本的游戏。我有一些韩语对话保存在文本文件中。我正在使用 BufferReader 的方法加载它,代码如下:
Path read = Paths.get("conversation.txt");
try {
BufferedReader reader = Files.newBufferedReader(read, Charset.forName("euc-kr"));
String lineS = reader.readLine();
while (lineS != null) {
System.out.println(lineS);
}
lineS = reader.readLine();
sc.nextLine();
}
} catch (IOException e) {
System.out.println("Cannot find the file");
e.printStackTrace();
}
如果我在 Eclipse 中运行它,这没有任何问题。但是如果我在 CMD 中运行它,它会出错。
我几乎完成了这个游戏,我要把它发给我的朋友们。但它在这里犯了错误。我该如何解决这个问题?
烙印99
相关分类