我正在做 Json 解析并Date
从中检索一个。我正在使用这种格式2012-07-24
,但我想以这种格式显示它Tuesday July 24, 2012
。
有人可以建议我如何实现这一目标吗?
您可以使用 SimpleDateFormat 来解析和格式化日期。JavaDoc上有很多例子:http ://docs.oracle.com/javase/1.4.2/docs/api/java/text/SimpleDateFormat.html
采用
String s;
Format formatter;
// vvvvvvvvvv Add your date object here
Date date = new Date("2012-07-24");
formatter = new SimpleDateFormat("EEEE MMMM dd, yyyy");
s = formatter.format(date);
System.out.println(s);
你可以试试
String date = "2012-07-24";
try {
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
SimpleDateFormat df2 = new SimpleDateFormat("EEE MMM dd, yyyy");
date = df2.format(format.parse(yourdate));
} catch (java.text.ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
使用以下方法
SimpleDateFormat dfDate = new SimpleDateFormat("yyyy-MM-dd");
SimpleDateFormat dfDate_day= new SimpleDateFormat("EEEE MMMM dd, yyyy");
public String formatTimeDay(String str)
{
java.util.Date d = null;
try {
d = dfDate.parse(str);
} catch (java.text.ParseException e) {
e.printStackTrace();
}
str = dfDate_day.format(d);
return str;
}
用法 ====> formatTimeDay("2012-07-24");
这里
EEEE =====> day name (like Sunday, Monday)
MMMM =====> month name(like January, March)
dd =====> day number of the present month
yyyy =====> present year
为此,您需要使用 SimpleDateFormat,请执行以下操作:
SimpleDateFormat smf=new SimpleDateFormat("yyyy-MM-dd");
Date dt=smf.parse(strDate, 0);
smf= new SimpleDateFormat("EEEE MMMM dd,yyyy");
String newFt=smf.format(dt);