09网络技术-解析JSON

使用JSONObject解析

  1. 还是在Apache\htdocs目录中新建一个get_data.json的文件,然后编辑一下代码:
[{"id":"5","version":"5.5","name":"Clash of Clans"},
{"id":"6","version":"7.0","name":"Boom Beach"},
{"id":"7","version":"8.0","name":"Clash Royale"},]
  • 在浏览器中输入http://127.0.0.1/get_data.json,就会出现一下的页面
    浏览器中的JSON数据.png
  1. 还是使用上一节中的知识,使用OkHttp进行网络连接,activity页面就一个按钮
public class MainActivity extends AppCompatActivity implements View.OnClickListener{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button but = (Button)findViewById(R.id.but);
        but.setOnClickListener(this);
    }

    @Override
    public void onClick(View view) {
        switch (view.getId()){
            case R.id.but:
                sendRequestOkHttp();
                break;
            default:
                break;
        }
    }

    private void sendRequestOkHttp(){
        new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    OkHttpClient client = new OkHttpClient();
                    Request request = new Request.Builder()
                            // 指定访问的服务器地址是电脑本机,使用的夜神
                            .url("http://172.17.100.2/get_data.json")
                            .build();
                    Response response = client.newCall(request).execute();
                    String responseData = response.body().string();
                    // 把返回的数据进行解析
                    parseJSONWithJSONObject(responseData);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }).start();
    }


    // 自定义方法进行JSON数据的解析
    private void parseJSONWithJSONObject(String jsonData){
        try {
            JSONArray jsonArray = new JSONArray(jsonData);
            for (int i = 0;i
  • 请求到的是http://172.17.100.2/get_data.json这个,从服务器返回的是JSON数据,调用parseJSONWithJSONObject()方法进行解析
  • 在这个方法中,把传入的对象放入到JSONArray对象中,进行遍历,取出每一个元素都是JSONArray对象,每个JSONArray对象中又包含id,name,version这些数据,这个时候使用getString()方法把这些数据取出
  • 运行程序,点击按钮就可以看到下面这些数据


    json解析的数据.png

使用GSON

使用JSONObject来解析JSON数据已经非常简单了,但是这个GSON更加简单,

  1. 在项目中添加GSON库的依赖,编辑app/build.gradlew嗯见,在dependencies中添加内容
dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    compile 'com.squareup.okhttp3:okhttp:3.4.1'
    // 添加这一行代码
    compile 'com.google.code.gson:gson:2.7'
}
  1. GSON之所以这么简单,是因为可以将json格式的字符串自动映射成一个对象,从而不需要我们手动去编码进行解析,比如有这一段json
    {"name":"TOM","age":20}
  2. 这个时候就可以定义一个Person类,并加入name和age这两个字段,然后简单地调用下面的代码就可以将json数据自动解析成person对象了
Gson gson = new Gson();
Person person = gson.fromJson(jsonData,Person.class);
  1. 如果解析的一段JSON数组就会稍微麻烦一点,这个时候需要借助TypeToken将期望解析成的数据类型传入到fromJson()方法中,如下
    List people = gson.fromJson(jsonData,new TYpeToken>(){}.getType());
  2. 基本就是这样用的,接下来实战一下就可以了,新建一个app类,添加3个字段
public class App {
    private String id;
    private String name;
    private String version;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
    }
}
  1. 修改MainActiviy中的代码
public class MainActivity extends AppCompatActivity implements View.OnClickListener{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button but = (Button)findViewById(R.id.but);
        but.setOnClickListener(this);
    }

    @Override
    public void onClick(View view) {
        if (view.getId() == R.id.but){
            sendRequestOkHttp();
        }
    }

    private void sendRequestOkHttp(){
        new Thread(new Runnable() {
            @Override
            public void run() {

                try {
                    OkHttpClient client = new OkHttpClient();
                    Request request = new Request.Builder()
                            // 指定访问的服务器地址是电脑本机,此时用的是
                            .url("http://10.0.2.2/get_data.json")
                            .build();
                    Response response = client.newCall(request).execute();
                    String responseData = response.body().string();
                    // 把返回的数据进行解析
                    parseJSONWithJSONObject(responseData);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }).start();
    }


    // 自定义方法进行JSON数据的解析
    private void parseJSONWithJSONObject(String jsonData){
        Gson gson = new Gson();
        List applist = gson.fromJson(jsonData,new TypeToken>(){}.getType());
        for (App app:applist){
            Log.d("MainActivity","id is "+app.getId());
            Log.d("MainActivity","name is "+app.getName());
            Log.d("MainActivity","version is "+app.getVersion());
        }
    }

}

  • 这个时候运行程序,你会看到和上面一样的打印日志

你可能感兴趣的:(09网络技术-解析JSON)