1

我从服务器下载文件。但是当我想获取文件大小时总是 body.contentLength()返回 -1 。有一些方法可以解决这个问题,HttpUrlConnection但是ResponseBody类呢?

  private void initDownload(){

        Retrofit retrofit = new Retrofit.Builder()
                .baseUrl("http://mobleh.com/").build();    
        RequestInterface requestInterface = retrofit.create(RequestInterface.class);    
        Call<ResponseBody> request = requestInterface.getAPK(path);

        try {    
            downloadFile(request.execute().body());

        } catch (IOException e) {

            e.printStackTrace();
            Toast.makeText(getApplicationContext(),e.getMessage(),Toast.LENGTH_SHORT).show();

        }
    }

    private void downloadFile(ResponseBody body) throws IOException {

        int count;
        byte data[] = new byte[1024 * 4];            
        long fileSize = body.contentLength();

}
4

1 回答 1

1

经过一些研究和思考,我做了一些技巧,只需使用 HttpURLConnection 获取文件大小,如下所示:

HttpURLConnection connection = (HttpURLConnection) new URL(path).openConnection();

    connection.setRequestProperty("Accept-Encoding", "identity");

long fileSize = connection.getContentLength();

用这种方式不管你用哪种方式下载文件,总能得到你这样的大小。

于 2018-03-07T09:41:39.203 回答