Gson解析Json資料

來源:互聯網
上載者:User

Gson解析Json資料

在Android開發中就經常用到json解析,方便的是Google已經為我們提供了一個很棒的json解析庫–gson。

以下是範例程式碼:

 

/** * GSON解析JSON資料 * @author dream * */public class TestGsonActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {// TODO Auto-generated method stubsuper.onCreate(savedInstanceState);/*//解析josn資料轉換成相應對象String jsonData = {id:1, name=zhangsan, sex=男};Person p = new Gson().fromJson(jsonData, Person.class);   //TextView text = new TextView(this);text.setText(p.getId()+ + p.getName()+  +p.getSex());*///解析json資料轉換成listString jsonData = [{id:1, name=zhangsan, sex=男}, +{id:2, name=lisi, sex=男}];List list = new Gson().fromJson(jsonData,new TypeToken>(){}.getType());StringBuilder sd = new StringBuilder();for(int t=0; t運行結果:

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.