Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

just think that when I opened my file then when I want to write something in it ,one Exception will be thrown,and if I used file.close() in the try block ,So because of that Exception will not work, where should I close my file???

share|improve this question
when I wrote file.close() in the finally block,it will show an error that create the local variable with the name file.:( – Johanna Jul 2 '09 at 6:48

6 Answers

up vote 5 down vote accepted

The proper way to do so is:

FileOutputStream out = null;
try {
  out = ...
  ...
  out.write(...);
  ...
  out.flush();
} catch (IOException ioe) {
  ...
} finally {
  if(out!=null) {
    try {
      out.close();
    } catch (IOException ioe) {
      ...
    }
  }
}
share|improve this answer

The general pattern for resources is acquire; try { use; } finally { release; }. If you try to rearrange that you'll often end up in a situation where you, say, release a lock without acquiring it. Note, in general there is no need to clutter with a null check. If you need to catch an exception from it all, surround all the code with a try-catch. So

try {
    final InputStream in = new FileInputStream(file);
    try {
        ...
    } finally {
        in.close();
    }
} catch (IOException exc) {
    throw new SomeException(exc);
}
share|improve this answer

You should use a finally block. However close method can also throw an IOException, so you should surround it in a try-catch block too.

This link may be helpful.

share|improve this answer
That close throws an IOException is a bad design decision in my opinion. – butterchicken Jul 2 '09 at 6:56

use a finally block:

File f;
try {
 f = ....
 .. use f ...
} /* optional catches */ 
finally {
 if (f != null) f.close();
}
share|improve this answer

I use two try catch blocks.

One where I open the file + a bool to let me know that the file was opened successfully. The second one where I write something (after checking the bool if open was a success).

    Try
    {
      //Open file. If success.
       bSuccess = true.
    }
    catch
    {

    }

    try
    {
    //check bool
    If(bSuccess)
    {
    //Do write operation
    }
    }
    catch
    {
    }
    finally
    {
      if(bSuccess)
     {
       File.close();
     }
    }
share|improve this answer
I like mfx's suggestion. – Ganesh R. Jul 2 '09 at 6:58

The answer of David Rabinowitz is right, but it can get simpler with the use of Apache Commons IO. For the complicated try-block in the finally-clause it has a method, for closing any Stream without an exception. With this you can write this:

FileOutputStream out = null;
try {
  out = ...
  ...
  out.write(...);
  ...
  out.flush();
} catch (IOException ioe) {
  ...
} finally {
  if(out!=null) {
    org.apache.commons.io.IOUtils.closeQuietly(out);
  }
}
share|improve this answer
Why the downvote? – Mnementh Jul 2 '09 at 10:15
I wasn't aware of this method in IOUtils, thanks! – David Rabinowitz Jul 19 '09 at 20:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.