用 Java 替换 String 中的标记
要在 Java 中替换 String 中的标记,我们使用 Message Format 类。Message Format 类提供了一种生成不依赖于语言的连接消息的方法。Message Format 类扩展 Serializable 和 Cloneable 接口。
声明 − java.text.MessageFormat 类声明如下 −
public class MessageFormat extends Format
MessageFormat.format(pattern, params) 方法格式化消息,并使用与参数号和数组索引匹配的 params 数组中的对象填充缺失的部分。
format 方法有两个参数,一个模式和一个参数数组。模式包含在 {} 大括号中的占位符,指示将参数值存储在数组中的位置。
让我们看一个用 Java 替换标记的例子 −
示例
import java.text.MessageFormat; public class Example { public static void main(String[] args) { Object[] obj = new Object[] { "Good", "!!"}; // The Morning argument has the placeholders 0 and 1 so it lies between Good and !! // Thus it substitutes !! token with Morning token System.out.println(MessageFormat.format("{0} Morning {1}", obj)); } }
输出
Good Morning !!
广告