Here you can find the source of format(String formatString, Object... args)
public static String format(String formatString, Object... args)
//package com.java2s; import java.util.Formatter; public class Main { public static String format(String formatString, Object... args) { Formatter formatter = new Formatter(); String formatedString = formatter.format(formatString, args) .toString();/*from w ww . j ava 2s . com*/ formatter.close(); return formatedString; } }