Home  >  Article  >  Java  >  Java Example - Get remote file size

Java Example - Get remote file size

黄舟
黄舟Original
2017-01-20 11:47:151566browse

The following example demonstrates how to get the size of a remote file:

/*
 author by runoob.com
 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://www.w3cschool.cc/wp-content/themes/w3cschool.cc/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();
   }}

The output result of running the above code is:

文件大小为:4261 bytes

The above is the Java example - Get the size of the remote file For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn