Tagged Questions

10
votes
8answers
15k views

Where to close java PreparedStatements and ResultSets?

Consider the code: PreparedStatement ps = null; ResultSet rs = null; try { ps = conn.createStatement(myQueryString); rs = ps.executeQuery(); // process the results... } catch ...
8
votes
5answers
149 views

Closing nested Reader

When reading from a text file, one typically creates a FileReader and then nests that in a BufferedReader. Which of the two readers should I close when I'm done reading? Does it matter? FileReader fr ...
8
votes
5answers
1k views

RAII in Java… is resource disposal always so ugly?

I just played with Java file system API, and came down with the following function, used to copy binary files. The original source came from the Web, but I added try/catch/finally clauses to be sure ...
7
votes
9answers
322 views

Handling IO exceptions in Java

Basically, I want to open a file, read some bytes, and then close the file. This is what I came up with: try { InputStream inputStream = new BufferedInputStream(new FileInputStream(file)); ...
4
votes
4answers
663 views

Is C++ like resource management possible in Java [closed]

In C++ we have Resource Acquisition Is Initialization (RAII) pattern, which extremely simplify the resource management. The idea is to provide some wrapping object for any kind of resources. The ...
2
votes
3answers
105 views

Do you clean before you make mess? On putting cleanup code inside finally block

I have a question concerning exception handling and resource management and I was wondering if anybody could share their opinion. I need to perform a sequence of actions: read app settings, setup the ...
1
vote
1answer
81 views

Close Opened Hibernation sessions if exist

When a Hibernate session is opened (sessionFactory.openSession()) it might be closed. It is ok. In case it is missed to close an opened session which is used to retrieve data (not to save or update or ...
1
vote
1answer
118 views

Are Locks AutoCloseable?

Are Locks AutoCloseable? That is, instead of: Lock someLock = new ReentrantLock(); someLock.lock(); try { // ... } finally { someLock.unlock(); } can I say: try (Lock someLock = new ...
1
vote
2answers
367 views

Problem with resources location difference in eclipse and JARs

I wrote a program that is based completely on a single text file: I read the file, store the information, then search the information, etc. So, for the program to work, the file just has to be present ...
0
votes
2answers
206 views

Do I have to manually shut down an Executor at application exit?

Suppose I have an Executor executor; somewhere in my application. Is it sufficient to just say setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); as usual and let "the system" deal with it, or do I have ...