Java IO Tutorial - Java PrintStream.format(String format, Object ... args)








Syntax

PrintStream.format(String format, Object ... args) has the following syntax.

public PrintStream format(String format,   Object ... args)

Example

In the following code shows how to use PrintStream.format(String format, Object ... args) method.

//w  w  w . j av a 2s  .  co  m
import java.io.*;

public class Main {

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

      
      PrintStream ps = new PrintStream(System.out);

      // format a string
      ps.format("This is a %s program", s);

      // flush the stream
      ps.flush();

   }
}

The code above generates the following result.