主题:URL中的getContentLength()得到的是字节总数吗?
你好,如题.
eg: URL url=new URL("http://www.baidu.com");
URLConnection conn=url.openConnection();
System.out.println("Length: "+conn.getContentLength());
请问这里的conn.getContentLength()得到的是http://www.baidu.com网址的字节总数吗??我得到的是"Length: 3200",如果不是,请问想得到一个网站的字节总数应该怎么办呢?
eg: URL url=new URL("http://www.baidu.com");
URLConnection conn=url.openConnection();
System.out.println("Length: "+conn.getContentLength());
请问这里的conn.getContentLength()得到的是http://www.baidu.com网址的字节总数吗??我得到的是"Length: 3200",如果不是,请问想得到一个网站的字节总数应该怎么办呢?