View Single Post
  #3 (permalink)  
Old 12-10-2007, 11:42 PM
staykovmarin staykovmarin is offline
Senior Member
 
Join Date: Nov 2007
Location: Newport, WA
Posts: 141
staykovmarin is on a distinguished road
You need escape your file path declaration with a blackslash:
Code:
BufferedReader in = new BufferedReader(new FileReader("C:\\grades.txt"));
Also posting the error helps people find your problem faster.
Reply With Quote