S
songjinggang
Unregistered / Unconfirmed
GUEST, unregistred user!
[]我是个初学者,请教各位一个问题,如何获得远程文件的大小,给出delphi源码。
如:http://www.***.com/***.zip这个文件,怎么能知道它的大小?
我看过levistone兄以前的提问,有如下代码,但我复制到我的程序中总是出错,是不是
还需加什么语句。
URL url = new URL("http://www.mydomain.com/" + fname + "." + suffix);
URLConnection urlConnection = url.openConnection();
fileSize = urlConnection.getContentLength();
如:http://www.***.com/***.zip这个文件,怎么能知道它的大小?
我看过levistone兄以前的提问,有如下代码,但我复制到我的程序中总是出错,是不是
还需加什么语句。
URL url = new URL("http://www.mydomain.com/" + fname + "." + suffix);
URLConnection urlConnection = url.openConnection();
fileSize = urlConnection.getContentLength();