Java API Tutorial - Java URLConnection .getContentLengthLong ()








Syntax

URLConnection.getContentLengthLong() has the following syntax.

public long getContentLengthLong()

Example

In the following code shows how to use URLConnection.getContentLengthLong() method.

//w  w  w  .  j a  v a  2  s.  co  m
import java.net.URL;
import java.net.URLConnection;

public class Main {

  public static void main(String args[]) throws Exception {

    URL u = new URL("http://www.java2s.com");
    URLConnection uc = u.openConnection();

    System.out.println(uc.getContentLengthLong());
  }

}

The code above generates the following result.