Saturday, March 13, 2021

Tìm hiểu Json in Android

Android and JSON

1.1. Thư viện json trong android

Nền tảng Android bao gồm thư viện json.org cho phép xử lý và tạo các tệp JSON.

Tìm hiểu Json in Android

Ví dụ về reading json

Việc chuyển đổi một chuỗi JSON thành một đối tượng JSON cũng rất đơn giản. Tạo mã sau cho hoạt động.

import org.json.JSONArray;

import org.json.JSONObject;


String jsonString = readJsonObjectFromSomeWhere(); 

try {

    JSONObject json = new JSONObject(jsonString);

    } catch (Exception e) {

        e.printStackTrace();

    }

Write json trong android

Viết JSON rất đơn giản. Chỉ cần tạo JSONObject hoặc JSONArray và sử dụng phương thức toString ().

public void writeJSON() {

    JSONObject object = new JSONObject();

    try {

        object.put("name", "Jack Hack");

        object.put("score", new Integer(200));

        object.put("current", new Double(152.32));

        object.put("nickname", "Hacker");

    } catch (JSONException e) {

        e.printStackTrace();

    }

    System.out.println(object);

}

No comments:

Post a Comment