我从String
对象获得此Date
:Mon Mar 25 00:00:00 IST 2013
日期格式的String
表示是什么?
答案 0 :(得分:6)
以下代码应该可以正常使用。
public static void main(String[] args) throws Exception {
String target = "Mon Mar 25 00:00:00 IST 2013";
DateFormat df = new SimpleDateFormat("EEE MMM dd kk:mm:ss z yyyy", Locale.ENGLISH);
Date result = df.parse(target);
System.out.println(result);
}
阅读javadoc了解有效模式。
答案 1 :(得分:2)
String yourDate= "Mon Mar 25 00:00:00 IST 2013" ;
DateFormat df = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy");
Date jDate = new Date(df.parse(yourDate).getTime());
System.out.println(jDate);