URLConnection.getContentLength() has the following syntax.
public int getContentLength()
In the following code shows how to use URLConnection.getContentLength() method.
import java.net.URL; import java.net.URLConnection; import java.util.Date; /*from w w w .j av a 2s . co m*/ 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("Content-type: " + uc.getContentType()); System.out.println("Content-encoding: " + uc.getContentEncoding()); System.out.println("Date: " + new Date(uc.getDate())); System.out.println("Last modified: " + new Date(uc.getLastModified())); System.out.println("Expiration date: " + new Date(uc.getExpiration())); System.out.println("Content-length: " + uc.getContentLength()); } }
The code above generates the following result.