连接超时(connect timed out)和读取超时(Rea

2019-08-01  本文已影响0人  dbc94a66f502

设置连接超时和读取超时方法:

RequestConfig config=RequestConfig.custom()
                .setConnectTimeout(10000) // 设置连接超时时间 10秒钟
                .setSocketTimeout(10000) // 设置读取超时时间10秒钟
                .build();

参考https://www.cnblogs.com/mengxinrenyu/p/7635012.html

上一篇下一篇

猜你喜欢

热点阅读