Java IO Tutorial - Java PrintStream.println(String x)








Syntax

PrintStream.println(String x) has the following syntax.

public void println(String x)

Example

In the following code shows how to use PrintStream.println(String x) method.

/*from   www  .j a v  a 2s .c o m*/
import java.io.*;

public class Main {

   public static void main(String[] args) {
      String c = "from java2s.com";

      
      PrintStream ps = new PrintStream(System.out);

      // print a string and change line
      ps.println(c);
      ps.print("from java2s.com");

      // flush the stream
      ps.flush();

   }
}

The code above generates the following result.