java.net.ProtocolException: unexpected end of stream

问题发生环境:使用  Retorfit 上传了3张以上的图片,

解决;在配置Retorfit里的okhttp 的时候添加一个拦截器, 里面加上  

addHeader("Connection","close");

全文 如下:

  public static Interceptor HeaderInterceptorPut() {
        return new Interceptor() {
            @Override
            public Response intercept(Chain chain) throws IOException {
                Request request = chain.request();
                Request.Builder builder = request.newBuilder();
             
//               下面这个header是为了解决 报错: java.net.ProtocolException: unexpected end of stream
                builder.addHeader("Connection","close");

                return chain.proceed(builder.build());
            }
        };
    }

如果还不成,尽量压缩图片吧

 

 

原因:上传3张图片是以流的形式上传的,3张图片的的流可能造成了请求超时,或者其他的 问题,别意外截断了,

你可能感兴趣的:(报错)