Android - โปรแกรมแยกวิเคราะห์ JSON
JSON ย่อมาจาก JavaScript Object Notation เป็นรูปแบบการแลกเปลี่ยนข้อมูลอิสระและเป็นทางเลือกที่ดีที่สุดสำหรับ XML บทนี้อธิบายวิธีการแยกวิเคราะห์ไฟล์ JSON และดึงข้อมูลที่จำเป็นออกจากไฟล์
Android มีคลาสที่แตกต่างกันสี่คลาสเพื่อจัดการข้อมูล JSON ชั้นเรียนเหล่านี้คือJSONArray,JSONObject,JSONStringer and JSONTokenizer.
ขั้นตอนแรกคือการระบุฟิลด์ในข้อมูล JSON ที่คุณสนใจตัวอย่างเช่น ใน JSON ที่ระบุด้านล่างเราสนใจที่จะรับอุณหภูมิเท่านั้น
{
"sys":
{
"country":"GB",
"sunrise":1381107633,
"sunset":1381149604
},
"weather":[
{
"id":711,
"main":"Smoke",
"description":"smoke",
"icon":"50n"
}
],
"main":
{
"temp":304.15,
"pressure":1009,
}
}
JSON - องค์ประกอบ
ไฟล์ JSON ประกอบด้วยส่วนประกอบต่างๆมากมาย นี่คือตารางที่กำหนดส่วนประกอบของไฟล์ JSON และคำอธิบาย -
ซีเนียร์ No | ส่วนประกอบและคำอธิบาย |
---|---|
1 | Array([) ในไฟล์ JSON วงเล็บเหลี่ยม ([) แทนอาร์เรย์ JSON |
2 | Objects({) ในไฟล์ JSON วงเล็บปีกกา ({) แทนออบเจ็กต์ JSON |
3 | Key ออบเจ็กต์ JSON มีคีย์ที่เป็นเพียงสตริง คู่ของคีย์ / ค่าประกอบเป็นออบเจ็กต์ JSON |
4 | Value แต่ละคีย์มีค่าที่อาจเป็นสตริงจำนวนเต็มหรือสองเท่าเป็นต้น |
JSON - การแยกวิเคราะห์
สำหรับการแยกวิเคราะห์ออบเจ็กต์ JSON เราจะสร้างออบเจ็กต์ของคลาส JSONObject และระบุสตริงที่มีข้อมูล JSON ให้ ไวยากรณ์ของมันคือ -
String in;
JSONObject reader = new JSONObject(in);
ขั้นตอนสุดท้ายคือการแยกวิเคราะห์ JSON ไฟล์ JSON ประกอบด้วยออบเจ็กต์ที่แตกต่างกันโดยมีคู่คีย์ / ค่าต่างกันเป็นต้นดังนั้น JSONObject จึงมีฟังก์ชันแยกต่างหากสำหรับการแยกวิเคราะห์แต่ละองค์ประกอบของไฟล์ JSON ไวยากรณ์ได้รับด้านล่าง -
JSONObject sys = reader.getJSONObject("sys");
country = sys.getString("country");
JSONObject main = reader.getJSONObject("main");
temperature = main.getString("temp");
วิธีการ getJSONObjectส่งคืนวัตถุ JSON วิธีการgetString ส่งคืนค่าสตริงของคีย์ที่ระบุ
นอกเหนือจากวิธีการเหล่านี้แล้วยังมีวิธีการอื่น ๆ ที่จัดเตรียมโดยคลาสนี้สำหรับการแยกวิเคราะห์ไฟล์ JSON ที่ดีขึ้น วิธีการเหล่านี้แสดงไว้ด้านล่าง -
ซีเนียร์ No | วิธีการและคำอธิบาย |
---|---|
1 | get(String name) วิธีนี้เพียงแค่ส่งคืนค่า แต่อยู่ในรูปแบบของ Object type |
2 | getBoolean(String name) วิธีนี้ส่งคืนค่าบูลีนที่คีย์ระบุ |
3 | getDouble(String name) วิธีนี้ส่งคืนค่าสองครั้งที่ระบุโดยคีย์ |
4 |
getInt(String name)
วิธีนี้จะคืนค่าจำนวนเต็มที่คีย์ระบุ |
5 | getLong(String name) วิธีนี้ส่งคืนค่ายาวที่ระบุโดยคีย์ |
6 | length() เมธอดนี้จะส่งคืนจำนวนการแม็พชื่อ / ค่าในออบเจ็กต์นี้ .. |
7 | names() วิธีนี้ส่งคืนอาร์เรย์ที่มีชื่อสตริงในออบเจ็กต์นี้ |
ตัวอย่าง
ในการทดลองกับตัวอย่างนี้คุณสามารถเรียกใช้สิ่งนี้บนอุปกรณ์จริงหรือในโปรแกรมจำลอง
ขั้นตอน | คำอธิบาย |
---|---|
1 | คุณจะใช้ Android studio เพื่อสร้างแอปพลิเคชัน Android |
2 | แก้ไขไฟล์ src / MainActivity.java เพื่อเพิ่มโค้ดที่จำเป็น |
3 | แก้ไข res / layout / activity_main เพื่อเพิ่มคอมโพเนนต์ XML ที่เกี่ยวข้อง |
4 | แก้ไข res / values / string.xml เพื่อเพิ่มส่วนประกอบสตริงที่จำเป็น |
5 | เรียกใช้แอปพลิเคชันและเลือกอุปกรณ์ Android ที่ใช้งานอยู่และติดตั้งแอปพลิเคชันบนแอปพลิเคชันและตรวจสอบผลลัพธ์ |
ต่อไปนี้เป็นเนื้อหาของไฟล์กิจกรรมหลักที่แก้ไข src/MainActivity.java.
package com.example.tutorialspoint7.myapplication;
import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.Toast;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.ArrayList;
import java.util.HashMap;
public class MainActivity extends AppCompatActivity {
private String TAG = MainActivity.class.getSimpleName();
private ListView lv;
ArrayList<HashMap<String, String>> contactList;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
contactList = new ArrayList<>();
lv = (ListView) findViewById(R.id.list);
new GetContacts().execute();
}
private class GetContacts extends AsyncTask<Void, Void, Void> {
@Override
protected void onPreExecute() {
super.onPreExecute();
Toast.makeText(MainActivity.this,"Json Data is
downloading",Toast.LENGTH_LONG).show();
}
@Override
protected Void doInBackground(Void... arg0) {
HttpHandler sh = new HttpHandler();
// Making a request to url and getting response
String url = "http://api.androidhive.info/contacts/";
String jsonStr = sh.makeServiceCall(url);
Log.e(TAG, "Response from url: " + jsonStr);
if (jsonStr != null) {
try {
JSONObject jsonObj = new JSONObject(jsonStr);
// Getting JSON Array node
JSONArray contacts = jsonObj.getJSONArray("contacts");
// looping through All Contacts
for (int i = 0; i < contacts.length(); i++) {
JSONObject c = contacts.getJSONObject(i);
String id = c.getString("id");
String name = c.getString("name");
String email = c.getString("email");
String address = c.getString("address");
String gender = c.getString("gender");
// Phone node is JSON Object
JSONObject phone = c.getJSONObject("phone");
String mobile = phone.getString("mobile");
String home = phone.getString("home");
String office = phone.getString("office");
// tmp hash map for single contact
HashMap<String, String> contact = new HashMap<>();
// adding each child node to HashMap key => value
contact.put("id", id);
contact.put("name", name);
contact.put("email", email);
contact.put("mobile", mobile);
// adding contact to contact list
contactList.add(contact);
}
} catch (final JSONException e) {
Log.e(TAG, "Json parsing error: " + e.getMessage());
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(getApplicationContext(),
"Json parsing error: " + e.getMessage(),
Toast.LENGTH_LONG).show();
}
});
}
} else {
Log.e(TAG, "Couldn't get json from server.");
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(getApplicationContext(),
"Couldn't get json from server. Check LogCat for possible errors!",
Toast.LENGTH_LONG).show();
}
});
}
return null;
}
@Override
protected void onPostExecute(Void result) {
super.onPostExecute(result);
ListAdapter adapter = new SimpleAdapter(MainActivity.this, contactList,
R.layout.list_item, new String[]{ "email","mobile"},
new int[]{R.id.email, R.id.mobile});
lv.setAdapter(adapter);
}
}
}
ต่อไปนี้เป็นเนื้อหาที่แก้ไขของ xml HttpHandler.java.
package com.example.tutorialspoint7.myapplication;
import android.util.Log;
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.ProtocolException;
import java.net.URL;
public class HttpHandler {
private static final String TAG = HttpHandler.class.getSimpleName();
public HttpHandler() {
}
public String makeServiceCall(String reqUrl) {
String response = null;
try {
URL url = new URL(reqUrl);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
// read the response
InputStream in = new BufferedInputStream(conn.getInputStream());
response = convertStreamToString(in);
} catch (MalformedURLException e) {
Log.e(TAG, "MalformedURLException: " + e.getMessage());
} catch (ProtocolException e) {
Log.e(TAG, "ProtocolException: " + e.getMessage());
} catch (IOException e) {
Log.e(TAG, "IOException: " + e.getMessage());
} catch (Exception e) {
Log.e(TAG, "Exception: " + e.getMessage());
}
return response;
}
private String convertStreamToString(InputStream is) {
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
StringBuilder sb = new StringBuilder();
String line;
try {
while ((line = reader.readLine()) != null) {
sb.append(line).append('\n');
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return sb.toString();
}
}
ต่อไปนี้เป็นเนื้อหาที่แก้ไขของ xml res/layout/activity_main.xml.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.tutorialspoint7.myapplication.MainActivity">
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</RelativeLayout>
ต่อไปนี้เป็นเนื้อหาที่แก้ไขของ xml res/layout/list_item.xml.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="@dimen/activity_horizontal_margin">
<TextView
android:id="@+id/email"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="2dip"
android:textColor="@color/colorAccent" />
<TextView
android:id="@+id/mobile"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#5d5d5d"
android:textStyle="bold" />
</LinearLayout>
ต่อไปนี้เป็นเนื้อหาของ AndroidManifest.xml ไฟล์.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.tutorialspoint7.myapplication">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
มาลองเรียกใช้แอปพลิเคชันของเราที่เราเพิ่งแก้ไข ฉันถือว่าคุณได้สร้างไฟล์AVDในขณะที่ทำการตั้งค่าสภาพแวดล้อม ในการเรียกใช้แอปจาก Android studio ให้เปิดไฟล์กิจกรรมของโครงการแล้วคลิก
ตัวอย่างด้านบนแสดงข้อมูลจากสตริง json ข้อมูลนี้มีรายละเอียดนายจ้างเช่นเดียวกับข้อมูลเงินเดือน