今天自学了MessageFormat
String instead = "Flameapollo";
String str1 = new String("This is a TextFormat {0}");
String format_str =MessageFormat.format(str1,instead);
System.out.println("format_str->"+format_str);
String instead = "Flameapollo";
String str1 = new String("This is a TextFormat {0}");
String format_str =MessageFormat.format(str1,instead);
System.out.println("format_str->"+format_str);