我正在使用 Scanner 对象来解析一个大的 .txt 文件。然而,所有引号和撇号都被打印为“‚Äú”和“‚Äô”。无论如何要打印实际的“””和“'”?
这是我的扫描方法:
Scanner in = new Scanner(new File("oldmanandthesea.txt"));
//the first line of the file is: “No,” the old man said.
System.out.println(in.nextLine); // prints: “No,” the old man said.