代码之家  ›  专栏  ›  技术社区  ›  nariman amani

从rx2和rxjava中的错误获取url

  •  2
  • nariman amani  · 技术社区  · 6 年前

    我正在使用rxjava的Reformation2来发送rest请求。Gson作为json解析。

    如果Gson不能解析json字符串,则抛出 java.lang.IllegalStateException

    如果错误类型为 HttpException 我可以从中获取url,但在其他类型中,如 java.lang.IllegalStateException异常 TimeoutException

    如何在rxjava中实现url并对catch进行改造。

    mainApi.getSomething(offset, limit, distance, latitude, longitude)
                .subscribeOn(Schedulers.newThread())
                .observeOn(AndroidSchedulers.mainThread())
                .subscribe({it:Response<Something>
                    val entities = it.body()?.entities
                    callBack.onResponse(it.raw(), entities)
                }, {//it:throwable
                    if (t is HttpException) {
                       Log.d("logUrl", "HttpException : ${t.response().raw().request().url()} : ${t.code()} :${t.message()}")
                    } else//something like IllegalStateException or TimeoutException
                         Log.d("logUrl", "Failure : ${t.localizedMessage}")
                    })
                   })
    
    1 回复  |  直到 6 年前
        1
  •  3
  •   kuber singh    6 年前

    new Consumer()方法始终提供关于任何类型错误的消息,即使GSON错误

     mGetDeviceObserver.subscribeOn(Schedulers.newThread())
             .observeOn(AndroidSchedulers.mainThread())
            .subscribe(new Consumer<RegData>() {
        @Override
        public void accept(@NonNull RegData mRegData) throws Exception {
        }
    }, new Consumer<Throwable>() {
        @Override
        public void accept(@NonNull Throwable t) throws Exception {
           if(t instanceof HttpException){ Log.d("path",((HttpException) t).response().raw().request().url().url().toString()); }
        }
    });