View Single Post
  #2 (permalink)  
Old 05-23-2008, 10:13 PM
derrickD derrickD is offline
Member
 
Join Date: Apr 2007
Location: USA
Posts: 50
derrickD is on a distinguished road
If you look at the error, it relates to line 25 and it is an unhandled exception.
You need either a try/catch block around it or else add a throw to the method which will just need to be caught someplace else.
Code:
PrintWriter outFile; try { outFile = new PrintWriter("C:\\Users\\Philip\\Desktop\\JavaProgramming\\GUI Array\\program.txt"); } catch (FileNotFoundException e1) { //handle this exception somehow }
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Reply With Quote