Mega Code Archive

 
Categories / Java Tutorial / Development
 

Relative index enables you to reuse the argument matched by the preceding format specifier

Simply specify import java.util.Formatter; public class MainClass {   public static void main(String args[]) {     Formatter fmt = new Formatter();     fmt.format("%d in hex is %<x", 255);     System.out.println(fmt);   } } 255 in hex is ff