Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: made code compile

...

Code Block
bgColor#ffcccc
langjava
public void createFile(String filename) throws FileNotFoundExceptionIOException{
  OutputStream out = new FileOutputStream(filename, true);
  if (!new File(filename).createNewFile()) {
      // File cannot be created...handle error
  } else {
      OutputStream out = new FileOutputStream(filename);
      // Work with FILE
  }
} 

...