检查远程服务器上的文件,如果存在,下载它
Posted
技术标签:
【中文标题】检查远程服务器上的文件,如果存在,下载它【英文标题】:Checking for a file on a remote server, and if it exists, download it 【发布时间】:2012-04-02 00:13:06 【问题描述】:我最近一直在尝试为我的程序创建更新程序。更新程序应该转到保管箱,查看“公共”文件夹中的文件,并确定它是否存在。它可以工作,并且可以下载文件,但无法检查文件是否存在。我看到this 并认为这是一个解决方案,但它似乎不起作用。
这是我用来检查文件是否存在的代码:
public static boolean exists(String URLName)
try
HttpURLConnection.setFollowRedirects(false);
HttpURLConnection con = (HttpURLConnection) new URL(URLName)
.openConnection();
con.setRequestMethod("HEAD");
return (con.getResponseCode() == HttpURLConnection.HTTP_OK);
catch (Exception e)
e.printStackTrace();
return false;
但是,它似乎总是返回 true。我正在访问的文件都以“App_”开头并以“.zip”结尾。唯一不同的是版本,它采用#.### 格式。
这是我如何检查它的完整代码:
public static void main(String[] args) throws IOException,
InterruptedException
double origVersion = 0.008;
double versionTimes = 0.000;
while(exists("http://dl.dropbox.com/u/.../" + "App_"+ String.valueOf(origVersion + versionTimes) + ".zip"))
versionTimes = round(versionTimes + 0.001);
//origVersion = round(origVersion + 0.001);
System.exit(0);
public static boolean exists(String URLName)
try
HttpURLConnection.setFollowRedirects(false);
// note : you may also need
// HttpURLConnection.setInstanceFollowRedirects(false)
HttpURLConnection con = (HttpURLConnection) new URL(URLName)
.openConnection();
con.setRequestMethod("HEAD");
return (con.getResponseCode() == HttpURLConnection.HTTP_OK);
catch (Exception e)
e.printStackTrace();
return false;
static double round(double d)
DecimalFormat twoDForm = new DecimalFormat("#.###");
return Double.valueOf(twoDForm.format(d));
很抱歉...代码太长了。反正。为了测试这一点,现在它将检查版本 0.009 是否可用。它是什么。它的完整版本在变量 double origVersion 中。现在,如果您将 origVersion 设置为 0.009,它将检查 0.01。这很好,除了 App_0.01.zip 不存在,但它仍然说它存在!
我还研究了 wget 来解决这个问题,方法是使用参数启动 wget
THEFILENAME --no-proxy --spider
但这也没有用。谁能帮我?我将不胜感激。
我还在其他地方看到您可以与该文件建立连接,如果它安全,则该文件存在。如果没有,它不会。但是,我不知道该怎么做。谁能带我走出黑暗?
[编辑]
此外,在 wget 上运行 THEFILENAME --no-proxy --spider 有效,并在检查版本 0.009 时输出以下内容:
Spider mode enabled. Check if remote file exists.
--2012-03-16 08:59:55-- http://dl.dropbox.com/u/.../....zip
Resolving dl.dropbox.com... 107.21.103.249, 107.20.135.4, 107.20.198.68, ...
Connecting to dl.dropbox.com|107.21.103.249|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 758067 (740K) [application/zip]
Remote file exists.
当检查 0.01 版本时:
Spider mode enabled. Check if remote file exists.
--2012-03-16 09:01:15-- http://dl.dropbox.com/u/.../....zip
Resolving dl.dropbox.com... 107.22.196.64, 50.19.217.32, 174.129.218.194, ...
Connecting to dl.dropbox.com|107.22.196.64|:80... connected.
HTTP request sent, awaiting response... 404 NOT FOUND
Remote file does not exist -- broken link!!!
我还尝试使用this 和 if(input.indexOf("404 NOT FOUND") == -1) 读取 wget 的输出,但仍然无济于事。
【问题讨论】:
“我最近一直在尝试为我的程序创建更新程序。” 如果应用程序。有一个 GUI,使用Java Web Start 启动它。自动更新只是 JWS 提供的功能之一。 谢谢!我会调查的!但是,如果 webstart 是控制台程序,它会起作用吗?因为它是... 【参考方案1】:发出HEAD
请求绝对是检查远程服务器上是否存在文件的正确方法。
我看不出你的 exists(String URLName)
方法有什么问题,所以我会检查它是否通过了你认为的 URL。
这行看起来很奇怪:
versionTimes = round(versionTimes + 0.001);
您在检查文件是否存在和打印消息之间更改了 versionTimes
的值。
【讨论】:
感谢您的回复!正如你所说,我使用了 System.out.println("dl.dropbox.com/u/67341745" + "HAL_"+ String.valueOf(origVersion + versionTimes) + ".zip"") ,它会到达正确的位置。我还放置了在while(exists)之前添加versionTimes,还是不行,难道是dropbox禁用了spider? 我将System.out.println(URLName + " = + con.getResponseCode())
放在exists()
中,这样您就可以看到针对特定网址的 200 或 404。
嗯……那也没用……嗯。我将用 C++ 重写我的整个程序......更新这样的东西并不难。无论如何,感谢您的帮助!以上是关于检查远程服务器上的文件,如果存在,下载它的主要内容,如果未能解决你的问题,请参考以下文章