Java MessageFormat 是一个用于格式化字符串的工具类,它允许你使用占位符和参数来生成格式化的字符串。要使用 Java MessageFormat,请按照以下步骤操作:
import java.text.MessageFormat;
{}
括起来。例如:String template = "Hello, {0}! Your age is {1}.";
在这个例子中,{0}
和 {1}
是占位符,它们将分别被参数替换。
String name = "John";
int age = 30;
MessageFormat.format()
方法将占位符替换为参数值:String formattedString = MessageFormat.format(template, name, age);
System.out.println(formattedString); // 输出 "Hello, John! Your age is 30."
将以上代码整合在一起,完整的示例如下:
import java.text.MessageFormat;
public class Main {
public static void main(String[] args) {
String template = "Hello, {0}! Your age is {1}.";
String name = "John";
int age = 30;
String formattedString = MessageFormat.format(template, name, age);
System.out.println(formattedString); // 输出 "Hello, John! Your age is 30."
}
}
这就是如何使用 Java MessageFormat 创建和格式化字符串的方法。你可以根据需要修改模板和参数来生成不同的格式化字符串。