JSON初识
一.什么是JSON
二.JSON的两种结构
同个https://www.json.cn网站可以清除的解析JSON的结构
三.如何解析JSONObject
效果图:点击按钮获取JSON中的数据并使用
//解析jsonObj对象的方法
private void parseJsonobj() {
/* {"name":"张三","age":21,"info":{"class":"三年一班","id":2016001}}*/
String str="{\"name\":\"张三\",\"age\":21,\"info\":{\"class\":\"三年一班\",\"id\":2016001}}";
try {
JSONObject jsonObject2=new JSONObject(str);//创建JSON对象
JSONObject classjson= jsonObject2.getJSONObject("info");//获取JSON对象中的JSON
tv_class.setText(classjson.getString("class"));
tv_id.setText(classjson.getInt("id")+"");
} catch (JSONException e) {
e.printStackTrace();
}
}
完整代码:
package com.example.a22120.day6_json;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
public class MainActivity extends AppCompatActivity {
private Button btn_get;
private TextView tv_name,tv_age ,tv_class,tv_id;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
bindID();
btn_get.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
parseJson();
parseJsonobj();
/* parseJsonArray();*/
}
});
}
private void bindID() {
btn_get=findViewById(R.id.getname);
tv_age=findViewById(R.id.tv_age2);
tv_name=findViewById(R.id.tv_name2);
btn_get= findViewById(R.id.getname);
tv_class=findViewById(R.id.tv_class2);
tv_id=findViewById(R.id.tv_id2);
}
//解析jsonObj对象的方法
private void parseJsonobj() {
/* {"name":"张三","age":21,"info":{"class":"三年一班","id":2016001}}*/
String str="{\"name\":\"张三\",\"age\":21,\"info\":{\"class\":\"三年一班\",\"id\":2016001}}";
try {
JSONObject jsonObject2=new JSONObject(str);
JSONObject classjson= jsonObject2.getJSONObject("info");
tv_class.setText(classjson.getString("class"));
tv_id.setText(classjson.getInt("id")+"");
} catch (JSONException e) {
e.printStackTrace();
}
}
//ctrl+r 是替换的快捷键
//解析JSON的方法
private void parseJson() {
String json_srt=" {\"name\":\"张三\",\"age\":21}"; //“\”为转义符
try {
JSONObject jsonObject=new JSONObject(json_srt);
String name=jsonObject.getString("name");
int age=jsonObject.getInt("age");
tv_name.setText(name);
tv_age.setText(Integer.toString(age)); //或者直接 用 age+""
} catch (JSONException e) {
e.printStackTrace();
}
}
}
UI代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.a22120.day6_json.MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="200dp"
android:layout_height="50dp"
android:text="名字:"
android:id="@+id/tv_name"
/>
<TextView
android:layout_width="200dp"
android:layout_height="50dp"
android:id="@+id/tv_name2"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<TextView
android:layout_width="200dp"
android:layout_height="50dp"
android:id="@+id/tv_age"
android:text="年龄:"
/>
<TextView
android:layout_width="200dp"
android:layout_height="50dp"
android:id="@+id/tv_age2"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="200dp"
android:layout_height="50dp"
android:text="班级:"
android:id="@+id/tv_class"
/>
<TextView
android:layout_width="200dp"
android:layout_height="50dp"
android:id="@+id/tv_class2"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="200dp"
android:layout_height="50dp"
android:text="学号:"
android:id="@+id/tv_"
/>
<TextView
android:layout_width="200dp"
android:layout_height="50dp"
android:id="@+id/tv_id2"
/>
</LinearLayout>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="获取"
android:id="@+id/getname"
/>
</LinearLayout>
四.如何解析 JSONArray
使用getJSONObject(index);方法把数组下标为index的 JSONObject提取出来,存入一个新的 JSONObject中。
JSONObject jsonObject1=jsonArray.getJSONObject(0);//