码迷,mamicode.com
首页 > Web开发 > 详细

将对象以json格式写入到文件中

时间:2019-10-04 16:55:21      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:class   pre   trace   for   value   cat   byte   list   tac   


将 list 对象以json格式写入到文件中




try
{ ObjectMapper mapper = new ObjectMapper(); String value = mapper.writeValueAsString(list); OutputStream out =new FileOutputStream("D:/file/oms.json"); byte[] b=value.getBytes(); for(int i=0;i<b.length;i++){ out.write(b[i]); } out.close();
}
catch (IOException e) { logger.info("序列化失败......"); e.printStackTrace();
}
结果如下所示:

[{"id":"000000151","length":22.2}, {"id":"000000161","length":23.37}, {"id":"000000160","length":23.37} ]

 

将对象以json格式写入到文件中

标签:class   pre   trace   for   value   cat   byte   list   tac   

原文地址:https://www.cnblogs.com/JonaLin/p/11622306.html

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