2016-02-18 20 views
14

私はRetrofit 2を使用してjsonを取得し、POJOに解析します。私の目的は、そのオブジェクトの一つの価値を得ることです。Retrofit - android.os.NetworkOnMainThreadException

compile 'com.squareup.retrofit2:retrofit:2.0.0-beta4' 
compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4' 

マイRESTクライアント:

public interface MyClient { 

    @GET("/part1/part2") 
    Call<MyItem> getMyItem(@Query("param1") String param1, 
               @Query("param2") String param2, 
               @Query("param3") String param3); 

} 

Here私は、サービスを作成するのに最適な素晴らしいツールを見つけました:

public class ServiceGenerator { 

    public static final String API_BASE_URL = "http://my.api.com"; 

    private static OkHttpClient.Builder httpClient = new OkHttpClient.Builder(); 

    private static Retrofit.Builder builder = 
      new Retrofit.Builder() 
        .baseUrl(API_BASE_URL) 
        .addConverterFactory(GsonConverterFactory.create()); 

    public static <S> S createService(Class<S> serviceClass) { 
     Retrofit retrofit = builder.client(httpClient.build()).build(); 
     return retrofit.create(serviceClass); 
    } 
} 

それから私はサービスジェネレータクラスを使用して新しいサービスを作成しています:

MyClient api = ServiceGenerator.createService(MyClient.class); 
     Call<MyItem> call = api.getMyItem(param1, param2, param3); 
     MyItem myItem= null; 
     try { 
      myItem= call.execute().body(); 
      Log.d("MyTag", myItem.getValue()); 
     } catch (IOException e) { 
      e.printStackTrace(); 
     } 

私はこのエラーを取得していますこのコードを実行しようとしていた場合:

android.os.NetworkOnMainThreadException at android.os.StrictMode$AndroidBlockGuardPolicy.onNetwork(StrictMode.java:1147) at java.net.InetAddress.lookupHostByName(InetAddress.java:418) at java.net.InetAddress.getAllByNameImpl(InetAddress.java:252) at java.net.InetAddress.getAllByName(InetAddress.java:215) at okhttp3.Dns$1.lookup(Dns.java:39) at okhttp3.internal.http.RouteSelector.resetNextInetSocketAddress(RouteSelector.java:173) at okhttp3.internal.http.RouteSelector.nextProxy(RouteSelector.java:139) at okhttp3.internal.http.RouteSelector.next(RouteSelector.java:81) at okhttp3.internal.http.StreamAllocation.findConnection(StreamAllocation.java:174) at okhttp3.internal.http.StreamAllocation.findHealthyConnection(StreamAllocation.java:127) at okhttp3.internal.http.StreamAllocation.newStream(StreamAllocation.java:97) at okhttp3.internal.http.HttpEngine.connect(HttpEngine.java:289) at okhttp3.internal.http.HttpEngine.sendRequest(HttpEngine.java:241) at okhttp3.RealCall.getResponse(RealCall.java:240) at okhttp3.RealCall$ApplicationInterceptorChain.proceed(RealCall.java:198) at okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:160) at okhttp3.RealCall.execute(RealCall.java:57) at retrofit2.OkHttpCall.execute(OkHttpCall.java:177) at retrofit2.ExecutorCallAdapterFactory$ExecutorCallbackCall.execute(ExecutorCallAdapterFactory.java:87) at uz.cp.ox.data.MyRepository.getMyItem(MyRepository.java:31) at uz.cp.ox.presenters.MyPresenter.do(MyPresenter.java:30) at uz.cp.ox.activities.MyActivity.onClick(MyActivity.java:52) at android.view.View.performClick(View.java:4756) at android.view.View$PerformClick.run(View.java:19749) at android.os.Handler.handleCallback(Handler.java:739) at android.os.Handler.dispatchMessage(Handler.java:95) at android.os.Looper.loop(Looper.java:135) at android.app.ActivityThread.main(ActivityThread.java:5221) at java.lang.reflect.Method.invoke(Native Method) at java.lang.reflect.Method.invoke(Method.java:372) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)

私はレトロフィットが自動的にバックグラウンドスレッドで仕事をしていませんと思いました。または私は何かを誤解した。この状況で何が問題になっていますか?

+0

回答を確認して、問題がある場合はお知らせください – Rahul

答えて

29

I thought that Retrofit automatically does the job in the background thread.

非同期バージョン-を使用するとします。呼び出し元のスレッドで実行される同期バージョンを使用しています。

代わりに、このようにそれを呼び出します。
MyItem myItem=response.body();

編集:のような、あなたの応答を取得するためにresponse.body()を使用し、onResponseで

MyClient api = ServiceGenerator.createService(MyClient.class); 
Call<MyItem> call = api.getMyItem(param1, param2, param3); 
call.enqueue(new Callback<MyItem>() { 
    @Override 
    public void onResponse(Call<MyItem> call, Response<MyItem> response) { 
     MyItem myItem=response.body(); 
    } 

    @Override 
    public void onFailure(Call<MyItem> call, Throwable t) { 
     //Handle failure 
    } 
}); 

()(固定onResponse()& ONFAILURE)署名onRespnose()に例を追加しました。

+4

サービスを同期して呼び出す場合はどうすればよいですか? – Iqbal

+0

OPからこのコードを参照してください: 'を呼び出してください。call = api.getMyItem(param1、param2、param3); call.execute()。body(); ' ' .enqueue'の代わりに '.execute()'を使用してください。 – NightSkyDev

+2

しかし、私たちが 'NetworkOnMainThreadException'を取得したら、同期をとれません。例外なく呼び出しますか? –

1

メインスレッドでwebserviceを呼び出しています。そのため、「android.os.NetworkOnMainThreadException」というエラーが表示されます。

NightSkyDevによって上記のコーディングを使用して、必要なデータを取得することができます。

2

2つのタイプのメソッド実行が行われます。 エンキュー - バックグラウンドスレッドでの作業は、改造によって自動的に処理されます。 を実行します - バックグラウンドスレッドを入れるか、非同期タスクの助けを借りて手動で必要なUIスレッドで動作します。

関連する問題