http://www.2shared.com/document/VqlJ-1wF/test.html
1) What is the encoding w/ which this file is encoded ? 2) What's the best way to read this in Java ?
Currently I have
Scanner scanner = new Scanner(new File("test.txt"), "IBM850");
while (scanner.hasNextLine()) {
buffer = new StringBuffer(scanner.nextLine());
System.out.println("BUFFER = "+buffer.toString());
}
Prints a lot of nulls and garbage. Whats the right encoding I need to use?