【最常用】两种java中的占位符的使用 第一种:使用%s占位,使用String.format转换 第二种:使用{1}占位,使用MessageFormat.format转换
https://blog.csdn.net/weixin_43899069/article/details/121164107
先介绍一下format是什么:
Java中允许我们对指定的对象进行某种格式化,从而得到我们想要的格式化样式。而format可以帮助我们从某种格式转化到我们想要的格式的一种工具。
第一种:使用%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);
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
控制台输出:
我叫小明,年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);
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
控制台同样输出:
我叫小明,今年28岁。
发现了一个很精华的博客,关于format的详细解析见这里:https://www.jianshu.com/p/c8f16cab35e1#
标签:转换,String,format,MessageFormat,占位,使用 From: https://www.cnblogs.com/sunny3158/p/17481142.html