DateFormat国际化日期 java代码
public class Demo2 {
public static void main(String[] args) throws ParseException{
//格式化输出日期
Date birth = new Date();
System.out.println(birth.toString());
DateFormat df = DateFormat.getDateInstance(DateFormat.FULL,Locale.CHINA);
String result = df.format(birth);
System.out.println(result);
//将字符串对象 解析成Date对象
String curDate = "2011年11月11日 星期五 CST ";
Date d = df.parse(curDate);
System.out.println("d="+d.toString());
}
}
DateFormat标签:
<%
Datedate = new Date();
pageContext.setAttribute("date",date);
%>
<fmt:formatDate value="${date}" type="both" dateStyle="SHORT"timeStyle="LONG" timeZone="CHINA"/>
<br/>
<fmt:parseDate value="09年11月28日 10:25:39" pattern="yy年MM月dd日 HH:mm"></fmt:parseDate>