第一種:使用%s佔位,使用String.format轉換
public class Test {
public static void main(String[] args) {
String url = "我叫%s,今年%s歲。";
String name = "小明";
String age = "28";
url = String.format(url,name,age);
System.out.println(url);
}
}
控制檯輸出:
我叫小明,年28歲。
第二種:使用{1}佔位,使用MessageFormat.format轉換
public class Test { public static void main(String[] args) { String url02 = "我叫{0},今年{1}歲。"; String name = "小明"; String age = "28"; url02 = MessageFormat.format(url02,name,age); System.out.println(url02); }}控制檯一樣輸出:我叫小明,今年28歲。