要使用Java中日期的中等样式格式格式化消息,我们使用MessageFormat类和Date类。MessageFormat类为我们提供了一种生成不依赖于语言的级联消息的方法。MessageFormat类扩展了Serializable和Cloneable接口。
声明-java.text.MessageFormat类的声明如下-
public class MessageFormat extends Format
MessageFormat.format(pattern,params)方法使用匹配参数编号和数组索引的params数组中的对象格式化消息并填充缺少的部分。
format方法有两个参数,一个模式和一个参数数组。该模式在{}大括号中包含占位符,大括号具有一个索引,该索引指示数组中存储参数值的位置,一个time参数指示填充符为time,一个medium参数指示时间以a表示。中等格式。它们如下-
String message = MessageFormat.format("{0,time,medium} & UTC(0) : {1,time,medium}", obj);
让我们看看一个程序,该程序在Java消息中使用中等样式格式-
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,medium} & UTC(0) : {1,time,medium}", obj); System.out.println(message); } }
输出结果
7:35:17 AM & UTC(0) : 12:00:00 AM