FileOutputStream Append String to End of Existing File in Java - Java @ Desk

Monday, March 31, 2014

FileOutputStream Append String to End of Existing File in Java

FileOutputStream Append String to End of Existing File in Java

java.io.FileOutputStream class is used to write string into a file in java. If the file does not exists at the path provided, FileOutputStream class first creates the new file.

With FileOutputStream, no need to check if File exists and no need to create the file.

The constructor takes the java.io.File object and creates the new file.

There are two constructons for FileWriter class
1) FileOutputStream(file) - Content is over written
2) FileOutputStream(file, boolean append) - If append is true then content is appended

If boolean append is true, then the content is appended to the file else the content is over written

Its very important to call the close() method on the FileOutputStream otherwise contents will not be written to the file created.

The difference between FileWriter to write into File and FileOutputStream is FileWriter write() method takes String content whereas FileOutputStream write() method takes bytes to write the content to file.

To convert String to bytes, use getBytes() method of String class

package test;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;

public class FileOutputStreamWrite {
 public static void main(String args[]) throws IOException {
  FileOutputStream fileOutputStream = null;
  try {
   File file = new File("D:/kumar/Blogs/File Operations/write.txt");
   fileOutputStream = new FileOutputStream(file, true);
   fileOutputStream.write("Write these bytes to file".getBytes());
  } catch (Exception cause) {
   cause.printStackTrace();
  } finally {
   fileOutputStream.flush();
   fileOutputStream.close();
  }
 }
}






No comments:

Post a Comment