java对象和json之间相互转换三种方式
2021/6/29 17:22:20
本文主要是介绍java对象和json之间相互转换三种方式,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一、JackSon
maven依赖:(springboot中只要导入了spring-boot-starter-web会传递依赖,可以直接使用)
<dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.3</version> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.9.3</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.9.3</version> </dependency>
示例:
Map<String, Object> resultMap = new HashMap<String, Object>(); resultMap.put("code",0); resultMap.put("message","请求成功"); resultMap.put("data",body); resultMap.put("timestamp",System.currentTimeMillis()); ObjectMapper objectMapper = new ObjectMapper(); try { // 生成json final String s = objectMapper.writer().writeValueAsString(objectMapper); // 解析json final Object o = objectMapper.reader().readValue(s); } catch (JsonProcessingException e) { e.printStackTrace(); }
二、GSon(谷歌)
maven依赖:
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.2</version> </dependency>
示例:
Map<String, Object> resultMap = new HashMap<String, Object>(); resultMap.put("code",0); resultMap.put("message","请求成功"); resultMap.put("data",body); resultMap.put("timestamp",System.currentTimeMillis()); Gson gson = new Gson(); // 生成json final String s = gson.toJson(resultMap); // 解析json,并指定解析对象类型 final Map o = gson.fromJson(s, Map.class);
三、FastJson(阿里)
maven依赖:
<dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.51</version> </dependency>
示例:
Map<String, Object> resultMap = new HashMap<String, Object>(); resultMap.put("code",0); resultMap.put("message","请求成功"); resultMap.put("data",body); resultMap.put("timestamp",System.currentTimeMillis()); // 生成json final String s = JSON.toJSONString(resultMap); // 解析json,并指定解析对象类型 final Object o = JSON.parseObject(s, Object.class);
这篇关于java对象和json之间相互转换三种方式的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23Springboot应用的多环境打包入门
- 2024-11-23Springboot应用的生产发布入门教程
- 2024-11-23Python编程入门指南
- 2024-11-23Java创业入门:从零开始的编程之旅
- 2024-11-23Java创业入门:新手必读的Java编程与创业指南
- 2024-11-23Java对接阿里云智能语音服务入门详解
- 2024-11-23Java对接阿里云智能语音服务入门教程
- 2024-11-23JAVA对接阿里云智能语音服务入门教程
- 2024-11-23Java副业入门:初学者的简单教程
- 2024-11-23JAVA副业入门:初学者的实战指南