码迷,mamicode.com
首页 > 其他好文 > 详细

Gson 转日期中的错误

时间:2018-02-02 18:31:10      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:win   服务   gpo   日期   uil   art   执行   col   body   

今天在用Gson做json转化是遇到一个问题,本地执行没有问题(windows 7),包丢到服务器上(Centos)就报错了。

技术分享图片

 

后经分析发现DateTypeDapter类中取本地环境的日期格式参考http://blog.csdn.net/liao_leo/article/details/44593095

private final DateFormat enUsFormat  
    = DateFormat.getDateTimeInstance(DateFormat.DEFAULT, DateFormat.DEFAULT, Locale.US);  
private final DateFormat localFormat  
    = DateFormat.getDateTimeInstance(DateFormat.DEFAULT, DateFormat.DEFAULT);  
private final DateFormat iso8601Format = buildIso8601Format();  
  
private static DateFormat buildIso8601Format() {  
  DateFormat iso8601Format = new SimpleDateFormat("yyyy-MM-dd‘T‘HH:mm:ss‘Z‘", Locale.US);  
  iso8601Format.setTimeZone(TimeZone.getTimeZone("UTC"));  
  return iso8601Format;  
} 

解决方法:

修改Gson gson = new Gosn();

为:Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss").create();

 

Bingo!

Gson 转日期中的错误

标签:win   服务   gpo   日期   uil   art   执行   col   body   

原文地址:https://www.cnblogs.com/rememberme/p/gson_date_format.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!