Questions tagged «resourcebundle»



6
在Java中使用MessageFormat.format()格式化消息
我已经在资源束中存储了一些消息。我正在尝试按以下格式设置这些消息。 import java.text.MessageFormat; String text = MessageFormat.format("You're about to delete {0} rows.", 5); System.out.println(text); 假设第一个参数(即实际消息)存储在以某种方式检索到的属性文件中。 第二个参数(即5)是一个动态值,应放置在{0}不会发生的占位符中。下一行打印, 您即将删除{0}行。 占位符不会替换为实际参数。 这里是撇号- You're。我试图像往常一样逃避它,You\\'re尽管它没有用。需要进行哪些更改才能使其正常工作?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.