gpt4 book ai didi

java - Android - 如何通过 url 获取 pdf 文件大小?

转载 作者:太空狗 更新时间:2023-10-29 14:00:45 24 4
gpt4 key购买 nike

当我运行这些方法时我的程序会崩溃

我想获取 pdf 文件的长度作为字符串并在 TextView 上设置此文本

private String getSize(String url1){
URL url = null;
try {
url = new URL(url1);
} catch (MalformedURLException e) {
e.printStackTrace();
}
URLConnection connection = null;
try {
connection = url.openConnection();
} catch (IOException e) {
e.printStackTrace();
}
final int length = connection.getContentLength();
String size = "" + length;
return size;
}

最佳答案

使用以下代码获取文件大小:

URL url = new URL("http://testserver.com/file.pdf");
URLConnection urlConnection = url.openConnection();
urlConnection.connect();
int fileSize = urlConnection.getContentLength();

textView.setText(String.valueOf(fileSize));

关于java - Android - 如何通过 url 获取 pdf 文件大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35721670/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com