Java IO Tutorial - Java PrintWriter(String fileName) Constructor








Syntax

PrintWriter(String fileName) constructor from PrintWriter has the following syntax.

public PrintWriter(String fileName)   throws FileNotFoundException

Example

In the following code shows how to use PrintWriter.PrintWriter(String fileName) constructor.

//from  w ww.ja v a  2s  . com

import java.io.*;

public class Main {

   public static void main(String[] args) {
      try {
         PrintWriter pw = new PrintWriter("c:/text.txt");

         // append chars
         pw.append('H');
         pw.append('e');
         pw.append('l');
         pw.append('l');
         pw.append('o');

         // flush the writer
         pw.flush();
         pw.close();
      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}