JSON is the first data structure. To put it bluntly, it is a description of data. It just appeared to replace XML. Unfortunately, it does not exist, but as a configuration file, it is very good because it It is small and flexible, and describes the data very well, so it is more convenient to transmit data on the network.
Please remember the description form of data in JSON. Since it is a form, what is its data form like:
The description of the object is: {} This represents jsonobject (json object)
Description of the array Is: [] represents jsonarray (json array)
The description of the attribute or value is: ""
The description between the connections is: :
ExampleThe format is like this:
{ “ret”: 1, “data”: [ { “id”: “8289”, “title”: “油焖大虾”, “collect_num”: “1596”, “food_str”: “大虾 葱 生姜 植物油 料酒”, “num”: 1596 },
The first method: native analysis
First of all, we need to analyze the format of json, here first is a json object ( That is, JsonObject), there is also a json array (that is, JsonArray) nested inside, and there is a json object in jsonarray. Once the analysis is clear, you can parse it. Of course, the best thing is to create an entity class bean corresponding to json.
The result here is the json string returned by the network request.
JSONObject jsonObject = new JSONObject(result);
JSONArray jsonArray = jsonObject.getJSONArray(“data”);
for (int j = 0; j JSONObject jsonObject2 = jsonArray.getJSONObject(j);
String id = jsonObject2.getString(“id”);
String title = jsonObject2.getString(“title”);
String pic = jsonObject2. getString("pic");
String collect_num = jsonObject2.getString("collect_num");
String food_str = jsonObject2.getString("food_str");
String num = jsonObject2.getString("num" );
Log.e(“json——->”, id ”,” title ”,” pic ”,” collect_num ”,” food_str ”,” num);
The second parsing method: Gson parsing
Gson parsing requires downloading the gson.jar package.
The analysis here requires generating entity classes for json. If you are a beginner, it is recommended to write it by hand. If you are familiar with it, you can use the plug-in GsonFormat in Android Studio to automatically generate it.
Parsing is just one sentence:
MenuBean menuBean = new Gson().fromJson(result, MenuBean.class);
Log.e(“MenuBean—–>”, menuBean.getRet() "");
The third parsing method: FastJson is similar to Gson.
MenuBean menuBean = JSON.parseObject(result,MenuBean.class);
Log.e(“MenuBean—–>”, menuBean.getRet() ”“);
Log.e (“MenuBean—–>”, menuBean.getData().get(0).getPic() ”“);
The fourth parsing method: JackJson parsing, also similar to the above
MenuBean menuBean;
menuBean = new ObjectMapper().readValue(result, MenuBean.class);
Log.e(“MenuBean—–>”, menuBean.getRet() ””) ;
Log.e(“MenuBean—–>”, menuBean.getData().get(0).getPic() ”“);
The above is the detailed content of How to get data in json. For more information, please follow other related articles on the PHP Chinese website!

Start Spring using IntelliJIDEAUltimate version...

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

Java...

How does the Redis caching solution realize the requirements of product ranking list? During the development process, we often need to deal with the requirements of rankings, such as displaying a...

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

How to set the SpringBoot project default run configuration list in Idea using IntelliJ...


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Zend Studio 13.0.1
Powerful PHP integrated development environment