View Single Post
  #2 (permalink)  
Old 04-06-2008, 08:33 PM
Java Tip Java Tip is offline
Moderator
 
Join Date: Nov 2007
Posts: 1,657
Java Tip will become famous soon enoughJava Tip will become famous soon enough
You are just throwing it. That means nobody handles it.

If you write the code like this. You can handle it yourself:

Code:
class fileRead{ public static void main(String []a) { try { //do file handling here and call read as well } catch(IOException e) { // handle your exception here e.printStackTrace(); } } }
Reply With Quote