Lấy kích cỡ File từ Server trong Java



Miêu tả vấn đề

Cách lấy kích cỡ file từ Server trong Java?

Giải pháp

Ví dụ sau minh họa cách lấy kích cỡ file từ Server trong 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://www.server.com");
      URLConnection conn = url.openConnection();
      size = conn.getContentLength();
      if (size < 0)
      System.out.println("Could not determine file size.");
      else
      System.out.println("The size of file is = "
      +size + "bytes");
      conn.getInputStream().close();
   }
}

Kết quả

Code trên sẽ cho kết quả sau:

The size of file is = 16384 bytes

lap_trinh_mang_trong_java.jsp