When I attempt to run my program in my command prompt (Windows 7), some of the text that is returned is turned into question marks. I thought I had solved the issue by adding "UTF-8" to my BufferedReader:
BufferedReader br = new BufferedReader(new InputStreamReader(
new FileInputStream(file), "UTF-8"));
Which seems to work in Eclipse, but not in cmd.exe. Thoughts?