0

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

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

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

我收到异常android.os.NetwokOnMainThreadException

我不知道如何解决这个问题,因为我已经查看了下面链接中给出的 OKHTTP 食谱表格。 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;
    }

}
4

1 回答 1

3

使用enqueue()而不是execute().

Execute 在同一个线程上运行它(在这种情况下是 UI 线程)。

Enqueue 在后台线程上运行它。

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

请参阅此处Call的界面。

于 2016-03-10T11:03:14.853 回答