我是android开发新手。我想将String
"Mon, 11 Feb 2013 08:00:00 CST"转换为Date
,并且我还想将此日期添加到个人日历中。
这个问题看起来有点类似于:java字符串到日期时间的转换问题
String d1String = "Mon, 11 Feb 2013 08:00:00 CST";
DateFormat df = new SimpleDateFormat("EEE, dd MMM yyyy hh:mm:ss z");
Date d1 = df.parse(d1String);
Date d= new SimpleDateFormat("Yourdateformathere").parse("yourstringhere");
试试这个…
String time1 = "Mon, 11 Feb 2013 08:00:00 CST";
String str="";
Date date;
try {
date = new SimpleDateFormat("EEE, dd MMM yyyy hh:mm:ss z").parse(time1);
str = new SimpleDateFormat("YOUR REQUIRED FORMATE").format(date);
System.out.println("output DATE== "+str);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}