因为您对某个
Date对象感兴趣,所以我认为JSON是Unix时间戳。
因此,我建议您使用Date(long毫秒)构造函数:)
private Date JSonTarihConvert(String tarih) throws ParseException{ long timestamp = getTimeStampFromTarih(tarih); return new Date(timestamp);}其中
getTimeStampFromTarih提取出现“ +”之前的毫秒数



