|
|
|
Android ส่งค่า JSON จากแอนดรอยไป php ผ่าน HttpPost เป็น ArrayList สามารถทำยังไงได้บ้างคะ |
|
|
|
|
|
|
|
จะต้องแปลงให้เป็นข้อความ JSON ก่อนครับ
Code (Android-Java)
ArrayList<JSONObject> MyArrJson = new ArrayList<JSONObject >();
JSONObject object;
/*** Rows 1 ***/
object = new JSONObject();
object.put("MemberID","1");
object.put("Name", "Weerachai");
object.put("Tel", "0819876107");
MyArrJson.add(object);
/*** Rows 2 ***/
object = new JSONObject();
object.put("MemberID","2");
object.put("Name", "Win");
object.put("Tel", "021978032");
MyArrJson.add(object);
/*** Rows 3 ***/
object = new JSONObject();
object.put("MemberID","3");
object.put("Name", "Eak");
object.put("Tel", "0876543210");
MyArrJson.add(object);
JSONArray json = new JSONArray(MyArrJson);
// json ส่งตัวแปรนี้ไปใช้
Go to : Android and JSON
ดูตัวอย่างที่ Example 2
|
|
|
|
|
Date :
2013-01-04 06:15:28 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|