http://www.2shared.com/document/VqlJ-1wF/test.html
1) このファイルがエンコードされているエンコードは何ですか? 2) Java でこれを読む最良の方法は何ですか?
現在、私は持っています
Scanner scanner = new Scanner(new File("test.txt"), "IBM850");
while (scanner.hasNextLine()) {
buffer = new StringBuffer(scanner.nextLine());
System.out.println("BUFFER = "+buffer.toString());
}
多くのヌルとガベージを出力します。使用する必要がある適切なエンコーディングは何ですか?