您好我正在尝试将字符串解析为日期,但它正在抛出异常java.text.ParseException: Unparseable date: "1409239380000" (at offset 13)
。这是我的代码:
String text="1409239380000";
try{
SimpleDateFormat dateFormat=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date1=dateFormat.parse(text);
}catch(Exception e){
Log.e("Error final:", e.toString());
}
答案 0 :(得分:3)
无需解析任何内容。您只需创建一个新的Date
:
String text = "1409239380000";
Date d = new Date(Long.valueOf(text));
如果您要执行的操作是按照指定的方式设置日期格式,请使用format()
:
String text = "1409239380000";
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
System.out.println(dateFormat.format(new Date(Long.valueOf(text))));
打印
2014-08-28 17:23:00