A common usage of catch and finally together is to obtain and use resources in a try block, deal with exceptional circumstances in a catch block, and release the resources in the finally block.

learn more… | top users | synonyms

1
vote
2answers
78 views

good practice with try-finally in java?

I ran into a little problem today where I have a piece of code like this, which made me a little uncomfortable... try{ //stuff... } finally { //finally stuff } I wonder if ...
0
votes
1answer
103 views

Null Pointer Exception after a 'finally' block

I get a NullPointerException at the end of this piece of code : @Override public final void onHandleIntent(Intent intent) { try { Context context = getApplicationContext(); ...
0
votes
1answer
69 views

How to make finally in try-finally wait for threads to finish?

I'm using JPA in Swing based desktop application. This is what my code looks like: public Object methodA() { EntityManager em = emf.createEntityManager(); em.getTransaction().begin(); boolean ...
0
votes
4answers
70 views

How we make Java Code to jump to finally

Here's the piece of code I am seeing 1 session s=null; 2 try{ 3 s= SessionCreator.createSession(); 4 System.out.println("Session Created"); 5 s.validate(); 6 }catch (Exception e){ 7 ...
0
votes
4answers
116 views

try-catch-finally formatexception

I am trying to capture input data from a Textbox by converting it to DateTime format string yy = string.Format("{0:T}", textBox1.Text); I wish to use Try-Catch-Finally to produce an ...
-3
votes
4answers
100 views

Is it good practise to use finally [closed]

We use try catch block in our code. What I want to ask here is that using finally block is a good practice. I haven't seen much finally block in code. Is it bad practice?
1
vote
3answers
150 views

Issue with Try and Catch on Android

As soon i execute the below code, the media is played for 60seconds and my app closes with an error "Unfortunately, YourAPP has stopped." . If i remove "bv.setImageResource(R.drawable.play);" on ...
1
vote
3answers
227 views

Can I use try-catch-finally like this?

Im using try-catch for years, but i never learned how and when to use finally, because i never understood the point of finally (i've read bad books)? I want to ask you about use of finally in my ...
2
votes
1answer
77 views

BufferedReader is never closed. What are the ramifications?

I'm trying to understand what are the ramifications if the BufferedReader is never closed? I just realized that many of the static code has a BufferedReader and they are never closed with ...
1
vote
1answer
104 views

how java implements finally block [closed]

I have searched a lot to find the implementation of finally block by java implementers. I want to know how java evaluates finally block. Does anybody know how finally block is defined in java ...
-3
votes
2answers
155 views

advantages and disadvantages of using try/catch [closed]

I want to ask what is the advantage and disadvantages of using try/catch? and when I must use it and when I must not use it ?
0
votes
4answers
65 views

Exception Handling Resumption Behaviour

new to StackOverFlow and fairly new to Java. Been programming in C prior to this and am trying to get the foundations of Java. Just a bit confused about the following code: public class Exercise5 { ...
1
vote
2answers
350 views

IntelliJ IDE gives error when using Try-Catch with Resources

I am attempting to use JDK 7's "try-catch with resources" statement; IntelliJ highlights my resource line, saying "Try-with-resources are not supported at this language level." When I try to ...
1
vote
1answer
226 views

App crashes silent: try catch finally does not work

I have a small app where I play with activating an activity by code. There I have the strange problem that my app dies after enabling a second activity. Here is my settings activity: @Override ...
1
vote
2answers
452 views

Powershell Try Catch invoke-sqlcmd

I am having problems catching an error in PowerShell when a connection fails to a SQL Server using Invoke-Sqlcmd. This is some generic code to demonstrate the issue: CLS $server = "Localhost\fake" ...
-3
votes
2answers
2k views

c# - How does the try catch finally block work?

In c#, how does a try catch finally block work? So if there is an exception, I know that it will jump to the catch block and then jump to the finally block. But what if there is no error, the catch ...
2
votes
1answer
204 views

Spring can commit Transaction in finally block with RunTimeException in try block

The project used Spring + Hibernate Sample code: public void method(){ try{  dao.saveA(entityA);  throw RuntimeException;  dao.saveB(entityB); }catch(RuntimeException ...
0
votes
2answers
525 views

can I have more than thwo finally block in a class

I am working on a project where I need to perform two different operation. I have a finally block in my main controller method. My question is, can I have more than two finally, for example: class ...
2
votes
4answers
190 views

How is exception handled in transactional context with finally block?

If i have transactional method like the one below, when is the finally block executed in case of transaction commit and rollback? For example if "persist some entity in database with hibernate" throws ...
2
votes
2answers
155 views

Why shouldn't we cleanup in the catch block? [duplicate]

Possible Duplicate: Why use Finally in Try … Catch Why should we not use the catch block to clean up code? I have not used the error-handling techniques as much, but am starting to use ...
0
votes
2answers
96 views

Finally Clause in SQL Server Transaction? Something that will execute irrespective of success or failure?

In SQL Server, is there something similar to finally clause in try..catch... block of c# ? I mean, I am using BEGIN TRAN, END TRAN, COMMIT TRAN, ROLLBACK TRAN etc in a SQL Server transaction and want ...
4
votes
5answers
201 views

Is catch a method in java?

I have searched for some answers , but could not find & hence I am raising this as a new question. The catch method in the try-catch. Is it a method ? , Its taking an object of type Exception as ...
-4
votes
6answers
108 views

Finally block's content is running before try's content? [closed]

How can I fix the below code so that finally part is not overwriten and I can see "This is a regular text" in lbl.Process's Text? try { grd_Order.SaveClicked(sender, e); //This is a button's ...
4
votes
2answers
302 views

Scala Continuations - Why can't my shifted call be inside a try-catch block?

I'm new to Scala continuations, and relatively new to the scala language in general. I tried playing with Scala continuations and wrote the following code: case class MyException(msg:String) extends ...
1
vote
5answers
112 views

How to avoid duplicate Cursor.Current statement?

If I am turning on the WaitCursor before a processing task and then turning it back to default, I often get this pattern of code: try { Cursor.Current = Cursors.WaitCursor; ...
7
votes
5answers
519 views

What are the circumstances under which a finally {} block will NOT execute?

In a Java try{} ... catch{} ... finally{} block, code within the finally{} is generally considered "guaranteed" to run regardless of what occurs in the try/catch. However, I know of at least two ...
-6
votes
5answers
144 views

eclipse warning: Finaly block doesn't complete normally

I have some code that throws a potential error and I catch these, then jump into a finally block, here it is in 'pseudo' form. private boolean myMethod(ResultSet rs1, ResultSet rs2){ ...
4
votes
8answers
129 views

In java, is there a way to ensure that multiple methods get called in a finally block?

So I have a try/finally block. I need to execute a number of methods in the finally block. However, each one of those methods can throw an exception. Is there a way to ensure that all these methods ...
0
votes
2answers
175 views

Is that the best way to release SQLite connection in Java?

I need a good way to close SQLIte connections in Java. After a few suggestion by other users I decided to add to my code a finally block to be sure that closing operation are always executed. public ...
5
votes
6answers
570 views

Does code in a finally get executed if I have a return in my catch() in c#?

I have the following code snippet / example. It's not working code I just wrote this so as to ask a question about catch, finally and return: try { doSomething(); } catch (Exception e) { ...
1
vote
3answers
126 views

Is it ever good pratice to throw an exception in a finally block?

There's a good question Catch block is not being evaluated when exceptions are thrown from finallys that is discussing some of the sometimes unexpected results of throwing an exception in a finally ...
2
votes
3answers
100 views

How to throw from the finally clause an exception caught in the catch clause?

Is it possible without using an additional variable to find out what exception was caught in the catch clause and then throw it again from the finally clause? public void exceptionalFunction() throws ...
3
votes
10answers
303 views

Is finally block really necessary for the clean up code (like closing the streams)?

I am very confused as to why do I need to need to put the clean-up code like closing of streams in the finally block. I've read that the code in finally block will run no matter what(whether there's ...
0
votes
1answer
105 views

How can I close the TextWriter stream on Windows XP successfully?

I have a code like the following one for working with a TextWriter stream. TextWriter TR = new StreamWriter(@"") try { //Logic } catch (Exception exception) { //Error Reporting } finally ...
0
votes
1answer
111 views

Powershell jumps into finally without exception message

I have a problem with my PowerShell code. Sometimes -for whatever reason- my script jumps right into the finally block wihtout any error message from the catch block. This is my PowerShell Code: try ...
1
vote
3answers
408 views

do I need to surround fileInputStream.close with a try/catch/finally block? How is it done?

I have the following Java Class that does one thing, fires out values from config.properties. When it comes time to close the fileInputStream, I think I read on Wikipedia that it is good to have it ...
1
vote
3answers
343 views

is it ok to dispose the dataset in finally block and then returning the dataset?

So I am taking over an existing project where the previous coder did many funny things. What I see the most and not really understand is the following block of code finally { if (conn != null) ...
0
votes
1answer
122 views

Where is the syntax error with **finally:* clause?

I'm trying to run Selenium tests for a Django app on production server. I am getting a syntax error on the finally: clause. I don't see where the error is and all the tests ran fine in development. ...
2
votes
4answers
473 views

When does a finally block execute if the catch block contains a continue statement?

I have some code that looks like this: foreach(var obj in collection) { try { // WriteToFile returns the name of the written file string filename = WriteToFile(obj); ...
-1
votes
4answers
403 views

What does C# throw and finally means in lay men terms? [closed]

Say you are running a program, and it meets a "THROW" statement... what happens? Will the program stop? Will it continue? And what's "FINALLY" for? Please I appreciate an explanation in simple ...
3
votes
6answers
178 views

Why would one choose to use the finally statement instead of a catch statement? (Java)

I'm relatively new to Java and I'm still trying to understand the fundamentals. I have been learning about exception handling in the form of try-catch statements. These are fine and I understand how ...
0
votes
6answers
128 views

Finally block to behave differently

I have a condition like this String str = null; try{ ... str = "condition2"; }catch (ApplicationException ae) { str = "condition3"; }catch (IllegalStateException ise) { str = "condition3"; ...
12
votes
3answers
1k views

In a finally block, can I tell if an exception has been thrown [duplicate]

Possible Duplicate: Is it possible to detect if an exception occurred before I entered a finally block? I have a workflow method that does things, and throws an exception if an error ...
1
vote
2answers
321 views

Try/Catch/Finally, use exception from Catch in Finally?

I've looked at a few other try catch finally questions on here but I'm not sure that this one has been answered. Does it smell bad to do something like: Exception? ex = null; try { //something } ...
0
votes
1answer
97 views

java: Exceptions: always reach finally? [duplicate]

Possible Duplicate: Does a finally block always run? let's imagine the following scenario: public void myMethod() throws MyException try { // do something // an Exception ...
0
votes
1answer
430 views

Can I use catch(e if e instanceof SyntaxError) in Node.js's javascript?

I read about try catch(e if e instanceof ...) blocks on MDN, however, upon trying it in Node.js, I get a SyntaxError: Unexpected token if. If this doesn't work, is there another way to catch specific ...
1
vote
4answers
753 views

If i return out of a try/finally in C# does the code in the finally always run?

It seems like it does as per some initial testing, but what id like to know if it is guaranteed to return or if in some cases it can not return ...? This is critical for my application but i havent ...
4
votes
2answers
374 views

python: recover exception from try block if finally block raises exception

Say I have some code like this: try: try: raise Exception("in the try") finally: raise Exception("in the finally") except Exception, e: print "try block failed: %s" % (e,) ...
1
vote
2answers
188 views

Finally block not working in JAVA Stored procedure for Oracle

When I compile the below code, it shows error "cannot find symbol variable out" But if i comment the code in the finally block, I am able to compile successfully. Please advise. public static int ...
0
votes
2answers
476 views

Why to set an object to Nothing in the Finally block?

In this VB.NET code: Dim o as SomeClass Try o = new SomeClass 'call some method on o here Catch(...) ... Finally o = Nothing End Try Why is there a need to set o to Nothing? What if i ...

1 2 3