URL hp = new URL("http", "127.0.0.1", 80, "/");URLConnection hpCon = hp.openConnection();if (hpCon.getContentLength() > 0){ InputStream input = hpCon.getInputStream(); int i=hpCon.getContentLength();//......... input.close();}