- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章如何利用Retrofit+RxJava实现网络请求的异常处理由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
通常情况下我们在与服务器进行通信的时候,不一定就不会出错,有时会出现其他的错误,这个时候我们只要和服务器约定好各种异常,在返回结果处进行判断,到底是执行错误,还是返回正常数据。具体的思路大致就是这样。这里我们定义exceptionhandle,这里我参考网上的东西,然后稍微做了一些改动.
exceptionhandle 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
public
class
exceptionhandle {
private
static
final
int
unauthorized =
401
;
private
static
final
int
forbidden =
403
;
private
static
final
int
not_found =
404
;
private
static
final
int
request_timeout =
408
;
private
static
final
int
internal_server_error =
500
;
private
static
final
int
bad_gateway =
502
;
private
static
final
int
service_unavailable =
503
;
private
static
final
int
gateway_timeout =
504
;
public
static
responseexception handleexception(throwable e){
//转换成responseexception,根据状态码判定错误信息
responseexception ex;
if
(e
instanceof
httpexception){
httpexception httpexception=(httpexception)e;
/**
* 传入状态码,根据状态码判定错误信息
*/
ex=
new
responseexception(e,error.http_error);
switch
(httpexception.code()){
case
unauthorized:
ex.message=
"未验证"
;
break
;
case
forbidden:
ex.message=
"服务禁止访问"
;
break
;
case
not_found:
ex.message=
"服务不存在"
;
break
;
case
request_timeout:
ex.message=
"请求超时"
;
break
;
case
gateway_timeout:
ex.message=
"网关超时"
;
break
;
case
internal_server_error:
ex.message=
"服务器内部错误"
;
break
;
case
bad_gateway:
break
;
case
service_unavailable:
break
;
default
:
ex.message =
"网络错误"
;
break
;
}
return
ex;
}
else
if
(e
instanceof
jsonparseexception
|| e
instanceof
jsonexception
|| e
instanceof
parseexception){
ex=
new
responseexception(e,error.parse_error);
ex.message=
"解析错误"
;
return
ex;
}
else
if
(e
instanceof
connectexception){
ex=
new
responseexception(e,error.netword_error);
ex.message=
"连接失败"
;
return
ex;
}
else
if
(e
instanceof
javax.net.ssl.sslhandshakeexception){
ex=
new
responseexception(e,error.ssl_error);
ex.message=
"证书验证失败"
;
return
ex;
}
else
{
ex=
new
responseexception(e,error.unknown);
ex.message=
"未知错误"
;
return
ex;
}
}
/**
* 约定异常
*/
public
static
class
error{
/**
* 自定义异常
*/
private
static
final
int
unauthorized =
401
;
//请求用户进行身份验证
private
static
final
int
unrequest=
403
;
//服务器理解请求客户端的请求,但是拒绝执行此请求
private
static
final
int
unfindsource=
404
;
//服务器无法根据客户端的请求找到资源
private
static
final
int
severerror=
500
;
//服务器内部错误,无法完成请求。
/**
* 协议出错
*/
public
static
final
int
http_error =
1003
;
/**
* 未知错误
*/
public
static
final
int
unknown =
1000
;
/**
* 解析错误
*/
public
static
final
int
parse_error =
1001
;
/**
* 网络错误
*/
public
static
final
int
netword_error =
1002
;
/**
* 证书出错
*/
public
static
final
int
ssl_error =
1005
;
}
/**
* 自定义throwable
*/
public
static
class
responsethrowable
extends
exception{
public
int
code;
public
string message;
public
responsethrowable(throwable throwable,
int
code){
super
(throwable);
this
.code=code;
}
}
/**
* 服务器异常
*/
public
class
serverexception
extends
runtimeexception{
public
int
code;
public
string message;
}
/**
* 统一异常类,便于处理
*/
public
static
class
responseexception
extends
exception{
public
int
code;
public
string message;
public
responseexception (throwable throwable,
int
code){
super
(throwable);
this
.code=code;
}
}
}
|
然后自己定义了一个observer 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
public
abstract
class
baseobserver<t>
implements
observer<t> {
private
context context;
public
baseobserver(context context){
this
.context=context;
}
@override
public
void
onsubscribe(disposable d) {
}
@override
public
void
onnext(t t) {
}
@override
public
void
onerror(throwable e) {
if
(e
instanceof
exceptionhandle.responseexception){
onerror((exceptionhandle.responseexception)e);
}
else
{
onerror(
new
exceptionhandle.responseexception(e,exceptionhandle.error.unknown));
}
}
@override
public
void
oncomplete() {
}
public
abstract
void
onerror(exceptionhandle.responseexception exception);
}
|
这里发生错误时,observerble会先调用onerror(throwable e),按照我的写法呢,会继续调用自定义onerror.
那么什么时候我们对服务器的返回结果进行判断,什么时候该发出异常了,请继续往下看:
这里我们打算用到observabletransformer,transformer其实就是就是对observable进行一定的变换.
先看代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
public
static
class
handlefuc<t>
implements
function<userguidesoftconfigrform<userguidesoftconfigpageinfo<list<userguidesoftconfig>>>, t> {
@override
public
t apply(userguidesoftconfigrform<userguidesoftconfigpageinfo<list<userguidesoftconfig>>> response) {
if
(!response.getcode().equals(
"200"
)){
throwable e=
new
throwable(
"约定错误"
);
/**
* 可以根据不同的状态嘛返回不同的提示信息
* 与服务器约定返回异常信息
*/
exceptionhandle.responseexception responseexception =
new
exceptionhandle.responseexception(e, exceptionhandle.error.http_error);
return
(t) observable.error(responseexception);
//发出错误异常
}
return
(t) observable.just(response);
//发出服务器数据,返回observable<response>
}
}
//处理错误的变换
public
static
class
errortransformer<t>
implements
observabletransformer {
@override
public
observable<t> apply(observable upstream) {
return
(observable<t>) upstream.flatmap(
new
handlefuc<t>());
//flatmap会重新创建一个observable,当它处理完事件后会汇入原先的observable对象。
}
}
|
说明:我们的handlefuc其实就是对服务器返回来的结果进行判断,逻辑很简单了,错误就抛出异常直接执行error方法。如果没有错误,就发送正常数据。这里值的说明一点的是,flatmap会重新创建一个observable,当它处理完事件后会重新汇入初始的observerble并开始发送事件.
使用起来其实就很简单了:
1
2
3
4
5
6
7
8
9
10
11
12
|
@provides
errortransformer provideerrortransformer(){
return
new
errortransformer();
}
public
observable<userguidesoftconfigrform<userguidesoftconfigpageinfo<list<userguidesoftconfig>>>> getapplication(pageparmform pageparmform){
return
retrofit.create(service.
class
)
.getapplicationlist(pageparmform)
.compose(errortransformer)
.subscribeon(schedulers.io())
.observeon(androidschedulers.mainthread());
}
|
直接用compose方法包裹起来即可.
最后看看activity:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
new
netrepository().getapplication(
new
pageparmform(constant.orderstr,constant.pagenum,constant.pagesize))
.subscribe(
new
baseobserver<userguidesoftconfigrform<userguidesoftconfigpageinfo<list<userguidesoftconfig>>>>(networkactivity.
this
) {
@override
public
void
onerror(exceptionhandle.responseexception exception) {
mytoast.showtoast(networkactivity.
this
,exception.getmessage());
log.d(
"carhandbook"
,exception.getmessage());
}
@override
public
void
onnext(userguidesoftconfigrform<userguidesoftconfigpageinfo<list<userguidesoftconfig>>> response) {
data=response.getdata().getlist();
code=response.getcode();
mytoast.showtoast(networkactivity.
this
,code);
generateadapter.setdata(data);
generateadapter.notifydatasetchanged();
}
});
|
好了对网络请求的异常处理整个思路大致就是这样了.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:https://www.jianshu.com/p/860945e0de5b 。
最后此篇关于如何利用Retrofit+RxJava实现网络请求的异常处理的文章就讲到这里了,如果你想了解更多关于如何利用Retrofit+RxJava实现网络请求的异常处理的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
这与 Payubiz payment gateway sdk 关系不大一体化。但是,主要问题与构建项目有关。 每当我们尝试在模拟器上运行应用程序时。我们得到以下失败: What went wrong:
我有一个现有的应用程序,其中包含在同一主机上运行的 4 个 docker 容器。它们已使用 link 命令链接在一起。 然而,在 docker 升级后,link 行为已被弃用,并且似乎有所改变。我们现
在 Internet 模型中有四层:链路 -> 网络 -> 传输 -> 应用程序。 我真的不知道网络层和传输层之间的区别。当我读到: Transport layer: include congesti
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
前言: 生活中,我们在上网时,打开一个网页,就可以看到网址,如下: https😕/xhuahua.blog.csdn.net/ 访问网站使用的协议类型:https(基于 http 实现的,只不过在
网络 避免网络问题降低Hadoop和HBase性能的最重要因素可能是所使用的交换硬件,在项目范围的早期做出的决策可能会导致群集大小增加一倍或三倍(或更多)时出现重大问题。 需要考虑的重要事项:
网络 网络峰值 如果您看到定期的网络峰值,您可能需要检查compactionQueues以查看主要压缩是否正在发生。 有关管理压缩的更多信息,请参阅管理压缩部分的内容。 Loopback IP
Pure Data 有一个 loadbang 组件,它按照它说的做:当图形开始运行时发送一个 bang。 NoFlo 的 core/Kick 在其 IN 输入被击中之前不会发送其数据,并且您无法在 n
我有一台 Linux 构建机器,我也安装了 minikube。在 minikube 实例中,我安装了 artifactory,我将使用它来存储各种构建工件 我现在希望能够在我的开发机器上做一些工作(这
我想知道每个视频需要多少种不同的格式才能支持所有主要设备? 在我考虑的主要设备中:安卓手机 + iPhone + iPad . 对具有不同比特率的视频进行编码也是一种好习惯吗? 那里有太多相互矛盾的信
我有一个使用 firebase 的 Flutter Web 应用程序,我有两个 firebase 项目(dev 和 prod)。 我想为这个项目设置 Flavors(只是网络没有移动)。 在移动端,我
我正在读这篇文章Ars article关于密码安全,它提到有一些网站“在传输之前对密码进行哈希处理”? 现在,假设这不使用 SSL 连接 (HTTPS),a.这真的安全吗? b.如果是的话,你会如何在
我试图了解以下之间的关系: eth0在主机上;和 docker0桥;和 eth0每个容器上的接口(interface) 据我了解,Docker: 创建一个 docker0桥接,然后为其分配一个与主机上
我需要编写一个java程序,通过网络将对象发送到客户端程序。问题是一些需要发送的对象是不可序列化的。如何最好地解决这个问题? 最佳答案 发送在客户端重建对象所需的数据。 关于java - 不可序列化对
所以我最近关注了this有关用 Java 制作基本聊天室的教程。它使用多线程,是一个“面向连接”的服务器。我想知道如何使用相同的 Sockets 和 ServerSockets 来发送对象的 3d 位
我想制作一个系统,其中java客户端程序将图像发送到中央服务器。中央服务器保存它们并运行使用这些图像的网站。 我应该如何发送图像以及如何接收它们?我可以使用同一个网络服务器来接收和显示网站吗? 最佳答
我正在尝试设置我的 rails 4 应用程序,以便它发送电子邮件。有谁知道我为什么会得到: Net::SMTPAuthenticationError 534-5.7.9 Application-spe
我正在尝试编写一个简单的客户端-服务器程序,它将客户端计算机连接到服务器计算机。 到目前为止,我的代码在本地主机上运行良好,但是当我将客户端代码中的 IP 地址替换为服务器计算机的本地 IP 地址时,
我需要在服务器上并行启动多个端口,并且所有服务器套接字都应在 socket.accept() 上阻塞。 同一个线程需要启动客户端套接字(许多)来连接到特定的 ServerSocket。 这能实现吗?
我的工作执行了大约 10000 次以下任务: 1) HTTP 请求(1 秒) 2)数据转换(0.3秒) 3)数据库插入(0.7秒) 每次迭代的总时间约为 2 秒,分布如上所述。 我想做多任务处理,但我
我是一名优秀的程序员,十分优秀!