当使用 Okhttp 和 GSON 库解析 JSON 响应时,我在主线程异常上得到网络

When parse a JSON response using Okhttp and GSON Library then i am getting Network on main thread exception

我已经在我的项目 gradle 文件中给出了依赖项,如下所示。

编译'com.google.code.gson:gson:2.4'

编译'com.squareup.okhttp3:okhttp:3.1.2'

我收到异常 android.os.NetwokOnMainThreadException

我不知道如何解决这个问题,因为我已经查看了下面给出的 OKHTTP 食谱表格 link。 https://github.com/square/okhttp/wiki/Recipes

    public class MainActivity extends AppCompatActivity {

    private final OkHttpClient client = new OkHttpClient();
    private final Gson gson = new Gson();
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        try {
            Request request = new Request.Builder()
                    .url("https://api.github.com/gists/c2a7c39532239ff261be")
                    .build();
            Response response = client.newCall(request).execute();
            if (!response.isSuccessful())
                Toast.makeText(getApplicationContext(),"false",Toast.LENGTH_LONG).show();

            Gist gist = gson.fromJson(response.body().charStream(), Gist.class);
            for (Map.Entry<String, GistFile> entry : gist.files.entrySet()) {
                Toast.makeText(getApplicationContext(),entry.getKey().toString(),Toast.LENGTH_LONG).show();
            }
        }catch (Exception e){
            Toast.makeText(getApplicationContext(),e.toString(),Toast.LENGTH_LONG).show();
        }
    }

    static class Gist {
        Map<String, GistFile> files;
    }

    static class GistFile {
        String content;
    }

}

使用 enqueue() 而不是 execute()

Execute 在同一个线程上运行它(在本例中是 UI 线程)。

Enqueue 在后台线程上运行它。

您想在后台线程上调用网络操作,而不是在 UI 线程上。

查看Call界面here