欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java根据key获取json串中对应的值

程序员文章站 2024-02-18 12:15:34
...

比如说一串json:

String str = “{“m”:“99”,“j”:“30”}”

想要根据get(“j”)获取对应的值 30。

		JSONObject coupon = JSON.parseObject(str);
        System.out.println("j=====" + coupon.getString("j"));

这样输出的就是j对应的值 30。

需要的依赖(jar包):

		<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.41</version>
        </dependency>