Json產生與解析

來源:互聯網
上載者:User

標籤:tin   資料   行資料   string   解析json資料   color   blog   ttext   bsp   

 

JSON常用與伺服器進行資料互動,JSON中“{}”表示JSONObject,“[]”表示JSONArray

如下json資料:

1  {"singers":[2 {"id":"02","name":"tom","gender":"男","tel":["123456","789012"]},3 {"id":"03","name":"jerry","gender":"男","tel":["899999","666666"]},4 {"id":"04","name":"jim","gender":"男","tel":["7777","5555"]},{"id":"05","name":"lily","gender":"女","tel":["222222","111111"]}5 ]}

 

產生json資料代碼:

 1 public String buildJson() throws JSONException { 2  3         JSONObject persons = new JSONObject(); 4  5         JSONArray personArr = new JSONArray(); 6  7         JSONObject person = new JSONObject(); 8         person.put("id", "02"); 9         person.put("name", "tom");10         person.put("gender", "男");11 12         JSONArray tel = new JSONArray();13         tel.put("123456");14         tel.put("789012");15 16         person.put("tel", tel);17 18         personArr.put(person);19 20         JSONObject person2 = new JSONObject();21         person2.put("id", "03");22         person2.put("name", "jerry");23         person2.put("gender", "男");24 25         JSONArray tel2 = new JSONArray();26         tel2.put("899999");27         tel2.put("666666");28 29         person2.put("tel", tel2);30 31         personArr.put(person2);32 33 34         JSONObject person3 = new JSONObject();35         person3.put("id", "04");36         person3.put("name", "jim");37         person3.put("gender", "男");38 39         JSONArray tel3 = new JSONArray();40         tel3.put("7777");41         tel3.put("5555");42 43         person3.put("tel", tel3);44 45         personArr.put(person3);46 47 48         JSONObject person4 = new JSONObject();49         person4.put("id", "05");50         person4.put("name", "lily");51         person4.put("gender", "女");52 53         JSONArray tel4 = new JSONArray();54         tel4.put("222222");55         tel4.put("111111");56 57         person4.put("tel", tel4);58 59         personArr.put(person4);60 61 62         persons.put("singers", personArr);63 64 65         return persons.toString();66     }

 

解析json資料代碼:

 1  private void parseJsonMulti(String strResult) { 2         try { 3             JSONArray jsonObjs = new JSONObject(strResult).getJSONArray("singers"); 4             String s = ""; 5  6             for (int i = 0; i < jsonObjs.length(); i++) { 7                 JSONObject jsonObj = ((JSONObject) jsonObjs.opt(i)); 8                 int id = jsonObj.getInt("id"); 9                 String name = jsonObj.getString("name");10                 String gender = jsonObj.getString("gender");11                 s += "ID號" + id + ", 姓名:" + name + ",性別:" + gender + ",電話:";12                 JSONArray tel = jsonObj.getJSONArray("tel");13                 for (int j = 0; j < tel.length(); j++) {14 15                     s += tel.getString(j)+"/";16                 }17 18                 s += "\n";19 20             }21             tv.setText(s);22         } catch (JSONException e) {23             e.printStackTrace();24         }25     }

 

Json產生與解析

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.