格式化的几种用法
public class FormatWay {
static final String detail_url = "http://www.example.com?local={0}";
public static void main(String[] args) {
String val = String.format("%s:%s", "hello", "world");
String detailUrl = MessageFormat.format(detail_url, "hello");
System.out.println(val);
System.out.println(detailUrl);
}
}