Java PrintStream(String fileName) Constructor

Syntax

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

public PrintStream(String fileName)   throws FileNotFoundException

Example

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


//from  w  w w .j  a v a  2 s  .  com
import java.io.File;
import java.io.PrintStream;

public class Main {

   public static void main(String[] args) throws Exception {
      byte c = 70;
      PrintStream ps = new PrintStream("c:/text.txt");

      // write byte c which is character F in ASCII
      ps.write(c);

      // flush the stream
      ps.flush();

   }
}