怎样知道一个网上文件的大小?

怎样知道一个网上文件的大小?

rt
参见你要看大小文件传输协议, 大部分文件传输协议传输信息时会把文件大小包含进去, http会,ftp也会
什么是

QUOTE:
大小文件传输协议

httplib 的 getresponse() 返回对象中有一个LENGTH
Hi,

try this;

command:
php4 -r '$sFile = file_get_contents("http://bbs.chinaunix.com");echo strlen($sFile). "\n";'

output:
96202
>>> import httplib
>>> host = 'www.163.com'
>>> req_file='/index.html'
>>> httpserver=httplib.HTTPConnection(host)
>>> httpserver.request('HEAD',req_file)
>>> res=httpserver.getresponse()
>>> if(res.status == 200):
        print res.length

或者
input = urllib2.urlopen(downloadurl)
size = int(input.info()["Content-Length"])
学习ing
做个记号
wget -S --spider url
正是我想问的,谢谢