当前位置:   article > 正文

利用jackson的JsonNode封装工具类快速获取json字符串中任意节点的json数据_jsonnode取值

jsonnode取值

关联资源

实现效果

工具类实现 xxx.xxx.xxx的形式直接从json字符串中获取任意节点字段的值,如下图所示:
在这里插入图片描述

实现代码

当前引入的jackson的依赖为:

<dependency>
	 <groupId>com.fasterxml.jackson.core</groupId>
	 <artifactId>jackson-databind</artifactId>
	 <version>2.10.1</version>
</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5

封装Json处理工具类

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;

/**
 * @author lzp
 * @Date:2023/3/1
 * @description: json处理工具类
 */
public class MyJsonUtils {

	/**
	 * 单例objectMapper,提高性能
	 * 网上的性能测试:https://blog.csdn.net/qq_31960623/article/details/117778291
	 */
	private static final ObjectMapper objectMapper = new ObjectMapper();

	/**
	 * 单例 饿汉式
	 */
	private static final MyJsonUtils INSTANCE = new MyJsonUtils();

	private MyJsonUtils() {
	}

	/**
	 * 单例模式,暴露一个单例的工具类实例获取
	 */
	public static MyJsonUtils getInstance() {
		return INSTANCE;
	}

	/**
	 * 通过key路径取到最后一级key对应的jsonNode
	 *
	 * @param jsonStr 原始的json字符串
	 * @param keyPath xx.xxx.xxx格式的key路径
	 * @return
	 */
	public JsonNode getValueByKeyPath(String jsonStr, String keyPath) throws JsonProcessingException {
		JsonNode jsonNode = objectMapper.readTree(jsonStr);
		String[] paths = keyPath.split("\\.");

		// 遍历key路径,直到最后一层的key
		JsonNode currentNode = jsonNode;
		for (String key : paths) {
			currentNode = currentNode.get(key);
			if (currentNode == null) {
				return null;
			}
		}
		return currentNode;
	}

	/**
	 * 通过key路径取到最后一级key对应的value值
	 *
	 * @param jsonStr 原始json字符串
	 * @param keyPath xx.xxx.xxx格式的key路径
	 * @param cls     值的对象类型
	 */
	public <T> T getValueByKeyPath(String jsonStr, String keyPath, Class<T> cls) throws JsonProcessingException {
		JsonNode jsonNode = this.getValueByKeyPath(jsonStr, keyPath);
		if (jsonNode == null) {
			return null;
		}
		return objectMapper.treeToValue(jsonNode, cls);
	}

	/**
	 * 测试
	 */
	public static void main(String[] args) throws JsonProcessingException {
		String jsonStr = "{\"head\":{\"face\":\"隔壁老王的小脸\",\"eye\":{\"left\":\"轮回眼\",\"right\":\"写轮眼\"},\"iq\":250},\"body\":\"身材修长\",\"likeStudy\":true}";
		// 分别取到各个类型的值
		String valueStr = MyJsonUtils.getInstance().getValueByKeyPath(jsonStr, "head.eye.left", String.class);
		Integer valueInt = MyJsonUtils.getInstance().getValueByKeyPath(jsonStr, "head.iq", Integer.class);
		Boolean valueBool = MyJsonUtils.getInstance().getValueByKeyPath(jsonStr, "likeStudy", Boolean.class);
		System.out.println(valueStr);
		System.out.println(valueInt);
		System.out.println(valueBool);
	}

}


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86

实现思路梳理

关键代码就下面这块

  • 先把字符串按 "."进行分割成数组
  • 然后遍历key,注意每次循环的时候,currentNode = 下一个key的值,类似递归的思想,最后一次循环中的key就能取到最后一层

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/977832
推荐阅读
相关标签
  

闽ICP备14008679号