以下实例演示了如何获取远程文件的大小:
import java.net.URL;
import java.net.URLConnection;
public class Main {
public static void main(String[] argv) throws Exception {
int size;
URL url = new URL("http://edu.jb51.net/wp-content/themes/edu.jb51.net/assets/img/newlogo.png");
URLConnection conn = url.openConnection();
size = conn.getContentLength();
if (size < 0)
System.out.println("无法获取文件大小。");
else
System.out.println("文件大小为:" + size + " bytes");
conn.getInputStream().close();
}
}
以上代码运行输出结果为:
文件大小为:4261 bytes
在线实例
字符集 & 工具
最新更新
站点信息
