用Java格式化带有日期的消息
要在Java中使用日期格式化消息,我们使用MessageFormat类和Date类。MessageFormat类为我们提供了一种生成不依赖于语言的连接消息的方法。MessageFormat类扩展了Serializable和Cloneable接口。
声明 -java.text.MessageFormat类声明如下-
public class MessageFormat extends Format
该 方法使用与参数编号和数组索引匹配的params数组中的对象来格式化消息并填充缺失的部分。MessageFormat.format(pattern,params)
format方法有两个参数,一个模式和一个参数数组。该模式在{}大括号中包含占位符,其中有一个索引指示存储参数值在数组中的位置,一个时间参数指示填充物是时间,一个短参数指示时间以短格式。它们如下-
String message = MessageFormat.format("{0,time,short} & UTC(0) : {1,time,short}", obj);
让我们看看一个用日期填充符格式化消息的程序-
示例
import java.text.MessageFormat; import java.util.Date; public class Example { public static void main(String[] args) throws Exception { Object[] obj = new Object[] { new Date(), new Date(0)}; String message = MessageFormat.format("{0,time,short} & UTC(0) : {1,time,short}", obj); System.out.println(message); } }输出结果
7:35 AM & UTC(0) : 12:00 AM