gson解析带中括号

来源:互联网 发布:淘宝客最低佣金比例 编辑:程序博客网 时间:2024/05/22 04:48
package animtest.com.example.e531.json;


import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;


import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;


import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;


import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.List;


public class MainActivity extends AppCompatActivity {


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);


        try {
            InputStream stream = getAssets().open("array.json");
            String jsonStr=StreamToString.streamToStr(stream,"utf-8");




            //使用gson解析
            //method1(jsonStr);


            //使用原生解析
            //method2(jsonStr);




            //使用混合解析
            method3(jsonStr);




        } catch (Exception e) {
            e.printStackTrace();
        }










    }


    private void method3(String jsonStr) throws JSONException {
        //集合对象
        List<Result> resultList=new ArrayList<>();


        //json串最外层是[] ,首先要构造的对象 是 JSONArray
        JSONArray array=new JSONArray(jsonStr);
        for(int i=0;i<array.length();i++){


            JSONObject obj = array.optJSONObject(i);


            //使用gson解析
            Gson gson=new Gson();
            Result r=gson.fromJson(obj.toString(),Result.class);
            resultList.add(r);


        }
        for(int i=0;i<resultList.size();i++){
            Log.d("zzz",resultList.get(i).toString());
        }
    }


    private void method2(String jsonStr) throws JSONException {
        //集合对象
        List<Result> resultList=new ArrayList<>();


        //json串最外层是[] ,首先要构造的对象 是 JSONArray
        JSONArray array=new JSONArray(jsonStr);
        for(int i=0;i<array.length();i++){
            JSONObject obj = array.optJSONObject(i);
            String name=obj.optString("name");


            Result result=new Result();
            result.setName(name);
            resultList.add(result);
        }
        for(int i=0;i<resultList.size();i++){
            Log.d("zzz",resultList.get(i).toString());
        }
    }


    private void method1(String jsonStr) {
        //集合对象
        List<Result> resultList=new ArrayList<>();


        //得到type类型
        Type type=new TypeToken<List<Result>>(){}.getType();


        Gson gson=new Gson();
        resultList=gson.fromJson(jsonStr,type);


        for(int i=0;i<resultList.size();i++){
            Log.d("zzz",resultList.get(i).toString());
        }
    }
}
原创粉丝点击