文章17 | 阅读 10171 | 点赞0
本文内容大多基于官方文档和网上前辈经验总结,经过个人实践加以整理积累,仅供参考。
@Test
public void test() throws IOException {
Gson gson = new GsonBuilder()
.setDateFormat("yyyy-MM-dd")
.create();
System.out.println(gson.toJson(new Date()));
}
运行结果:
@Test
public void test() throws IOException {
Gson gson = new GsonBuilder()
.setDateFormat("yyyy-MM-dd hh:mm:ss")
.create();
System.out.println(gson.toJson(new Date()));
}
运行结果:
@Test
public void test() throws IOException {
Gson gson = new GsonBuilder()
.setDateFormat("MM-dd-yyyy hh:mm")
.create();
System.out.println(gson.toJson(new Date()));
}
运行结果:
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/Silent_Paladin/article/details/54097641
内容来源于网络,如有侵权,请联系作者删除!