Most voted "try-with-resources" questions
6 questions
Sort by count of
-
46
votes2
answers11298
viewsHow does Try-with-Resources work?
In Java 7, the concept of Try-with-Resources was added in the language. What is the Try-with-Resources? How does it work? What does it serve? How is it used? What problem does it aim to solve?…
java exception try-catch try-finally try-with-resourcesasked 7 years, 11 months ago Victor Stafusa 63,338 -
4
votes3
answers354
viewsClose() method in Try and catch blocks is necessary?
I am studying Java with database and after seeing a little more about this method close() and this protected block, I was a little confused, because in some codes and articles I see that was not…
-
4
votes2
answers98
viewsIs Try-with-Resource in PHP?
Exists in PHP something similar to Try with Resource java? Or I have to close resources in the finally even?
-
1
votes0
answers46
viewsUsing Try-with-Resources in Java code
I have a following problem, I am unable to pass a code that I currently have and that is wrong, it works but does not close the connection to bank and gives too much error, and I wanted to use it…
-
1
votes0
answers182
viewsUnit Testing - How to test a Try-with-Resources?
I would like to know the best way - or the standard way - to test a Try-with-Resources; with Test Cases for each of the Exceptions that can be launched (simulating the release of each of these…
-
0
votes1
answer95
viewsRewrite code using the Try-with-Resources resource
My problem is to rewrite a code using the Try-with-Resources feature, as I’m new in the world of programming I’m not being able to learn how to do this, which is becoming something exciting, because…