0

Model クラスとその内部のインターフェースを定義しました。コードは次のとおりです。

public class MapModel {
    MapContract.Presenter mPresenter;
    private Location mResLocation;
    private static final String TAG = MapModel.class.getSimpleName();

    public MapModel(MapContract.Presenter presenter) {
        mPresenter = presenter;
    }
    public static WebServiceInterface WebServiceInterface = RetrofitServiceGenerator.create(WebServiceInterface.class);


    public void queryAddress(String address) throws IOException {

        WebServiceInterface .lookupAddress(Constants.GOOGLE_API_KEY, address).enqueue(
                new Callback<Result>() {
                    @Override
                    public void onResponse(Call<Result> call, Response<Result> response) {


                        mResLocation = response.body().getGeometry().getLocation();


 Log.i(TAG, "onResponse: " + response.toString());
                            Log.i(TAG, "Location : " + mResLocation.getLat() + " : " + mResLocation.getLat());
                            mPresenter.onSearchSuccess(mResLocation);
                        }



                  @Override
                    public void onFailure(Call<Result> call, Throwable t) {mPresenter.onSearchFailed("Search failed");
                    }
                }
        );
    }
    public interface WebServiceInterface {

        @GET("json")
        Call<Result> lookupAddress(@Query("key") String apiKey, @Query("address") String searchTerm);
    }

}

私の改造ジェネレーターは次のとおりです。

public class RetrofitServiceGenerator {
    public static <S> S create(Class<S> serviceClass) {
        HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
        interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
        OkHttpClient client = new OkHttpClient.Builder().addInterceptor(interceptor)
                .readTimeout(30, TimeUnit.SECONDS)
                .connectTimeout(30, TimeUnit.SECONDS).build();
        Retrofit retrofit = new Retrofit.Builder()
                .baseUrl("https://maps.googleapis.com/maps/api/geocode/")
                .client(client)
                .addConverterFactory(GsonConverterFactory.create())
//                .addCallAdapterFactory(RxJava2CallAdapterFactory.create())
                .build();

        return retrofit.create(serviceClass);
    }
}

私が抱えている問題は、メソッドを呼び出すと、queryAddressnull が返されるように見えることです。http://www.jsonschema2pojo.org/を使用して取得した json 結果の POJO オブジェクトを作成しました。完全なコードと POJO クラスのクラスはこちらで確認できます。表示されるエラーは次のとおりです
java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.Double sematec.mehdi.mymap.webmodels.Location.getLat()' on a null object reference 。okhttp ログに正しい json 応答が表示されるため、要求は正しいと思います。つまり、犯人は別の場所にいます。誰かが私が間違っている場所を知っていますか?

4

2 に答える 2

1

私はついに問題の原因を見つけました。Web モデルを見ると、GoogleMapModel クラスもあります。呼び出し元のメソッドはその型を返す必要があります。次に、そこから位置情報を抽出します。したがって、コードは次のようになります。

public class MapModel {
    MapContract.Presenter mPresenter;
    private Location mResLocation;
    private static final String TAG = MapModel.class.getSimpleName();

    public MapModel(MapContract.Presenter presenter) {
        mPresenter = presenter;
    }
    public static WebServiceInterface WebServiceInterface = RetrofitServiceGenerator.create(WebServiceInterface.class);


    public void queryAddress(String address) throws IOException {

        WebServiceInterface .lookupAddress(Constants.GOOGLE_API_KEY, address).enqueue(
                new Callback<GoogleMapModel>() {
                    @Override
                    public void onResponse(Call<GoogleMapModel> call, Response<GoogleMapModel> response) {
                        mResLocation = response.body().getResults().get(0).getGeometry().getLocation();
                        mPresenter.onSearchSuccess(mResLocation);
                    }

                    @Override
                    public void onFailure(Call<GoogleMapModel> call, Throwable t) {mPresenter.onSearchFailed("Search failed");
                    }
                }
        );
    }
    public interface WebServiceInterface {

        @GET("json")
        Call<GoogleMapModel> lookupAddress(@Query("key") String apiKey, @Query("address") String searchTerm);
    }

}
于 2018-01-26T07:47:24.683 に答える