JSON
中的一个属性的日期值(“/日期(-62135575200000-0600)/”),我不熟悉该类型。如何将此字符串转换为SimpleDateFormat
JSON属性:
"toDate": "/Date( -62135575200000-0600)/"
答案 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