Mega Code Archive

 
Categories / Java / Language Basics
 

Demonstrate the format specifiers 2

import java.util.*;    public class FormatDemo3 {    public static void main(String args[]) {      Formatter fmt = new Formatter();        fmt.format("Copying file%nTransfer is %d%% complete", 88);      System.out.println(fmt);    }  }