如何转换日期字符串“/ Date(-62135575200000-0600)/”

时间:2016-10-13 11:26:04

标签: android json date simpledateformat

JSON中的一个属性的日期值(“/日期(-62135575200000-0600)/”),我不熟悉该类型。如何将此字符串转换为SimpleDateFormat

JSON属性:

"toDate": "/Date( -62135575200000-0600)/"

1 个答案:

答案 0 :(得分:0)

这应该有效:

String date = "-62135575200000-0600"; // strip down the numerical value 
Date date1 = new Date(date);
DateFormat fmt = new SimpleDateFormat("yyyy mm dd");
System.out.println(fmt.format(date1));

负日期取为1970年1月1日之前的毫秒数。 Source