aspose file tools
The moose likes Web Services Certification (SCDJWS/OCPJWSD) and the fly likes i need to skip lines after exception Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Certification » Web Services Certification (SCDJWS/OCPJWSD)
Reply Bookmark "i need to skip lines after exception" Watch "i need to skip lines after exception" New topic
Author

i need to skip lines after exception

SHINU .R SHINU .R
Greenhorn

Joined: Sep 02, 2005
Posts: 12
am reading a file line by line...But in some case some exception comes,i catch exception but program not exceute next line. please tell how skip the exception comes on line and exceute next line.I used this but it shows compilation error
finally{
continue;
}
but it shows compilation error
try {


FileInputStream fstream = new FileInputStream(args[0]);
log");
System.out.println(fstream);
FileOutputStream fstream1 = new FileOutputStream("C://Documents and Settings/sp0c5899/Desktop/msgtracking.log");
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
DataOutputStream out = new DataOutputStream(fstream1);
BufferedWriter br1 = new BufferedWriter(new OutputStreamWriter(out));
try {

System.out.println("Line 1 : " + lin);


while ((line = br.readLine()) !=null)
{

some condition checking

}
catch (Exception e) {//Catch exception if any
System.err.println("Error: " + e);
e.printStackTrace();



}


} catch (Exception e) {//Catch exception if any
System.err.println("Error: " + e);
}
finally{
continue;
}
}
Harsha Jay
Ranch Hand

Joined: Jul 23, 2001
Posts: 177
1.) You have posted in the wrong forum. Try this forum
2.) The moderators are going to ask you to change you login name, since it does not follow javaranch policy.
3.) Comment out the continue in the finally block and if you wish to ignore an exception, you can do this by not handling it by just having empty braces.

Hope this helps!

Harsha
[ November 12, 2006: Message edited by: Harsha Jay ]
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56162
    
  13

Please do not cross-post the same question in multiple forums. It wastes people's time when multiple redundant conversations take place.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: i need to skip lines after exception
 
Similar Threads
read lines after exception
Lookahead with Java
Regarding reading a file in a jsp
Reading one line from a text
to read lines inside brackets