Java tutorial
import java.io.*; public class Main { public static void main(String[] args) { String s = "from java2s.com"; PrintStream ps = new PrintStream(System.out); // printf this string ps.printf("This is a %s application", s); // flush the stream ps.flush(); } }