一、网址

http://mvnrepository.com/

操作参考: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

 

posted on 2020-07-01 00:50  西伯尔  阅读(340)  评论(0编辑  收藏  举报