This week's book giveaway is in the Functional programming forum.
We're giving away four copies of A Functional Approach to Java: Augmenting Object-Oriented Java Code with Functional Principles and have Ben Weidig on-line!
See this thread for details.
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Liutauras Vilda
  • Ron McLeod
  • Jeanne Boyarsky
  • Paul Clapham
Sheriffs:
  • Junilu Lacar
  • Tim Cooke
Saloon Keepers:
  • Carey Brown
  • Stephan van Hulst
  • Tim Holloway
  • Peter Rooke
  • Himai Minh
Bartenders:
  • Piet Souris
  • Mikalai Zaikin

i need to skip lines after exception

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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;
}
}
 
Ranch Hand
Posts: 177
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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 ]
 
Sheriff
Posts: 67706
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please do not cross-post the same question in multiple forums. It wastes people's time when multiple redundant conversations take place.
reply
    Bookmark Topic Watch Topic
  • New Topic