List,Map转json字符串(com.alibaba.fastjson)

  • Post author:
  • Post category:其他


这里用到的是alibaba的fastjson库。

在pom.xml文件添加如下内容:

<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>fastjson</artifactId>
    <version>1.2.47</version>
</dependency>

实体类:

public class emp implements Serializable{
    private String id;
    private String name;
    private String salary;
    private String age;

}

构造器和getter和setter就不贴了。

import com.alibaba.fastjson.JSON;

List<emp>转json字符串:

emp e=new emp();
e.setId("03");
e.setName("yangguo");
e.setSalary("10000");
e.setAge("18");

emp e1=new emp();
e1.setId("04");
e1.setName("xiaolongnv");
e1.setSalary("9000");
e1.setAge("1



版权声明:本文为qq_42263866原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。