gpt4 book ai didi

java - 使用大括号 {} 的 MessageFormat

转载 作者:行者123 更新时间:2023-12-02 02:48:38 25 4
gpt4 key购买 nike

在Java中使用MessageFormat类在字符串中传递不同的变量时

System.out.println(MessageFormat.format("I want to resolve this statement "{  {0}, {1}  }", "this", "this"));  

当您打印此内容时,它将显示 --> { {0}, {1} } 并且由于包裹在大括号中而不会解析带有值的参数。

最佳答案

你想要的是这样的:

System.out.println(MessageFormat.format("I want to resolve this statement '{'{0}, {1}'}'", "this", "this"));

输出:

我想解析这个语句{this,this}

关于java - 使用大括号 {} 的 MessageFormat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44194497/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com