Java 實例 - 獲取遠程文件大小
以下實例演示了如何獲取遠程文件的大小:
/* author by w3cschool.cn Main.java */ 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://hgci.cn/wp-content/themes/w3cschool/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
更多建議: