最常用两种java中的占位符的使用

Posted 来老铁干了这碗代码

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了最常用两种java中的占位符的使用相关的知识,希望对你有一定的参考价值。

先介绍一下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);
    }
}

控制台输出:
我叫小明,年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岁。


发现了一个很精华的博客,关于format的详细解析见这里:https://www.jianshu.com/p/c8f16cab35e1#

以上是关于最常用两种java中的占位符的使用的主要内容,如果未能解决你的问题,请参考以下文章

java中两种占位符的使用方式

如何更改输入标签占位符的语言?

JDBC中?占位符的使用说明

Lua中string.format占位符的使用

具有许多占位符的 ItemStack

使用带占位符的 LIKE 准备语句 [重复]