一、网址
操作参考:https://www.cnblogs.com/dhqy/p/12300222.html
二、常用类和对应jar包
1.将java对象转换成json数据
(1)ObjectMapper类
使用 ObjectMapper类 必须引用3个jar包(jackson-databind,jackson-core,jackson-annotations)
创建Json对象。例子:
public void test1() throws IOException { //1、创建对象 User user = new User("zmy",20,"male"); //2、创建jackson的核心对象 ObjectMapper ObjectMapper mapper = new ObjectMapper(); //3、转换 /*try { String json = mapper.writeValueAsString(user); System.out.println(json); } catch (JsonProcessingException e) { e.printStackTrace(); }*/ //将数据写到d://a.txt文件中 // mapper.writeValue(new File("d://a.txt"),user); //将数据关联到writer中 mapper.writeValue(new FileWriter("d://b.txt"),user); }
(2)JSONObject类
使用JSONObject 类的话需要以下6个JAR包:commons-beanutils.jar,commons-collections.jar,commons-lang-2.6.jar,commons-logging.jar,ezmorph.jar,json-lib.jar。
下载:https://blog.csdn.net/qq_42262444/article/details/87261285
参考:
https://www.cnblogs.com/newcityboy/p/11538020.html
作者:西伯尔
出处:http://www.cnblogs.com/sybil-hxl/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。