Here you can find the source of fmt(String pattern, Object... args)
private static String fmt(String pattern, Object... args)
//package com.java2s; import java.text.MessageFormat; public class Main { private static String fmt(String pattern, Object... args) { return MessageFormat.format(pattern, args); }/* www . j a va2 s. co m*/ }