Create PrintWriter from System.out : PrintWriter « File Input Output « Java






Create PrintWriter from System.out

   

import java.io.PrintWriter;

class PrintWriterDemo {

  public static void main(String args[]) throws Exception {

    PrintWriter pw = new PrintWriter(System.out);

    // Experiment with some methods
    pw.println(true);
    pw.println('A');
    pw.println(500);
    pw.println(40000L);
    pw.println(45.67f);
    pw.println(45.67);
    pw.println("Hello");
    pw.println(new Integer("99"));

    // Close print writer
    pw.close();
  }
}

   
    
    
  








Related examples in the same category

1.Create PrintWriter from BufferedWriter
2.Create PrintWriter out of FileWriter
3.Write lines of text to file using a PrintWriter
4.A PrintWriter that ends lines with a carriage return-line feed (CRLF).
5.A PrintWriter that also sends its output to a log stream
6.A helper class for printing indented text