mysql中sql复习
String str = "这{0}是一{1}话{2}"; String [] ss = {"就","句","而已"}; System.out.println(java.text.MessageFormat.format(str , ss )); //这就是一句话而已