string 转 java对象、转map的方式

时间:2021-12-07 07:29:55

1、使用fastJson 将String转 map:

String out;

Object succesResponse = JSON.parse(out);    //先转换成Object

Map map = (Map)succesResponse;         //Object强转换为Map

2、String 转 java 对象

fastjson 应用 string字符串转换成java对象或者对象数组

代码如下

  1. import java.util.ArrayList;
  2. import java.util.Arrays;
  3. import java.util.List;
  4. import com.alibaba.fastjson.JSON;
  5. import com.alibaba.fastjson.JSONObject;
  6. import com.alibaba.fastjson.TypeReference;
  7. public class TestFastJson {
  8. public static void main(String[] args) {
  9. //  转换成对象
  10. String jsonstring = "{\"a\":51,\"b\":0}";
  11. Usa u1 = JSON.parseObject(jsonstring, new TypeReference<Usa>(){});
  12. Usa u2 = JSON.parseObject(jsonstring,Usa.class);
  13. // 转换成对象数组
  14. String jsonstring2 = "[{\"a\":51,\"b\":0}]";
  15. Usa[] usa2 = JSON.parseObject(jsonstring2, new TypeReference<Usa[]>(){});
  16. List list = Arrays.asList(usa2);
  17. // 转换成ArrayList
  18. ArrayList<Usa> list2 = JSON.parseObject(jsonstring2, new TypeReference<ArrayList<Usa>>(){});
  19. // 转换成ArrayList(默认)    list3  与 list4  效果相同
  20. ArrayList<JSONObject> list3 = JSON.parseObject(jsonstring2, new ArrayList<Usa>().getClass());
  21. ArrayList<JSONObject> list4 = JSON.parseObject(jsonstring2, ArrayList.class);
  22. for (int i = 0; i < list4.size(); i++) { //  推荐用这个
  23. JSONObject io = list4.get(i);
  24. System.out.println(io.get("a") + "======adn====="+io.get("b"));
  25. }
  26. }
  27. }
  28. class Usa {
  29. private int count = 1888;
  30. private String base = "project";
  31. private Long a;
  32. public Long getA() {
  33. return a;
  34. }
  35. public void setA(Long a) {
  36. this.a = a;
  37. }
  38. private String b;
  39. public String getB() {
  40. return b;
  41. }
  42. public void setB(String b) {
  43. this.b = b;
  44. }
  45. }

json字符串 直接转换成List

  1. ArrayList<Usa> usa2 = JSON.parseObject(jsonstring2, new TypeReference<ArrayList<Usa>>(){});

或者转换成对象数组

Usa[] usa2 = JSON.parseObject(jsonstring2, new TypeReference<Usa[]>(){});

对象数组转List

List list = Arrays.asList(usa2);

我们使用new TypeReference的时候会生成多个class文件 里面有多少个new TypeReference 就会新增了class

即使我们在for循环里(0-N)写new TypeReference 这段代码也是多生成一个class文件,fastjson是看我们写了多少new TypeReference,而不是调用了多少次new TypeReference。推荐用ArrayList.class