Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The expression of json data in java

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

本篇内容主要讲解"java中json数据的表达形式",感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习"java中json数据的表达形式"吧!

在很多时候,我们在使用java语言编程的时候,可能需要传递的数据格式会要求比较严格,如果要求格式必须是json类型数据的时候,就必须要知道如何书写json格式数据。

如果是简单地制作json格式数据,只要严格按照"键值对"的形式进行json数据编写,即 key : value的形式:

1、如果传递的数据时{ "name1" : "vm1" },这里的value值是固定的字符串,

那么,在书写的时候 String json = " { \"name1\" : \"vm1\" }",这里的json就可以表示上述name1数据,其中'\'是"的转义字符,\"表示的就是"。

2、如果传递的数据时{ "is_true" : true },这里的value值是boolean类型数据,值为true/false,

那么,在书写的时候 String json = " { \"is_true\" : true/false }",在:后面直接写上boolean类型的值即可。

3、如果传递的数据时{ "name1" : "vm1" },这里的value值是一个变量,采用param来表示。

那么,在书写的时候 String json = " { \"name1\" : \" "+ param +" \" }",和第一种比较,是将vm1值用"+ param +"代替,这个就能够返回不固定的变量值作为value。

4、如果传递的数据时{ "name1" : vm1 },这里的value值是一个变量,采用param来表示。

那么,在书写的时候 String json = " { \"name1\" : "+ param +" }",和第三种数据比较,是去掉了\",即去掉了value两侧的双引号""。

阿里巴巴的fastjson用法总结:

1.maven中的配置

com.alibaba

fastjson

1.2.41

2.对象转接送

JSON.toJSONString(object)//可以转换bean,集合

3.json字符串转JsonObject

JSONObject jsonObject=JSON.parseObject(jsonStr);

获取json值:jsonObject.get(key);

4.json字符串转换成指定对象类型

List stu =JSON.parseObject(jsonStu, new TypeReference(){});

new TypeReference (){},我们使用的就是new TypeReference(){} 返回的结果就是 List 也不需要强制转化

到此,相信大家对"java中json数据的表达形式"有了更深的了解,不妨来实际操作一番吧!这里是网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report