如何在android中将给定日期转换为可读格式

时间:2012-07-24 10:42:13

标签: android date

我在做Json解析并从中检索Date。我使用此格式2012-07-24,但我希望以Tuesday July 24, 2012格式显示它。

有人可以建议我如何实现这个目标吗?

5 个答案:

答案 0 :(得分:2)

您可以使用SimpleDateFormat来解析和格式化日期。在JavaDoc上有很多例子:http://docs.oracle.com/javase/1.4.2/docs/api/java/text/SimpleDateFormat.html

答案 1 :(得分:1)

使用

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);

答案 2 :(得分:1)

你可以尝试

    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();
    }

答案 3 :(得分:0)

使用以下方法

 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

答案 4 :(得分:0)

您需要为此目的使用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);