欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android HttpURLConnection 获取下载文件大小

程序员文章站 2022-04-08 21:38:40
...

1、HttpURLConnection 获取下载文件大小

URL url = null;
String fileUrl = "http://XXXXX";
try {
    url = new URL();
} catch (MalformedURLException e) {
    e.printStackTrace();
}

HttpURLConnection urlcon = null;
try {
    urlcon = (HttpURLConnection) url.openConnection();
    int fileLength = urlcon.getContentLength();
    log.d(TAG,"文件大小为:"+fileLength+"btye");
} catch (IOException e) {
    e.printStackTrace();
}