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.