使用Apache Commons在Java中下载文件时获取HTTP 302

时间:2015-06-15 18:33:57

标签: java file url apache-commons fileutils

我使用以下方法从互联网上下载文件:

try {
    URL url = new URL("http://search.maven.org/remotecontent?filepath=com/cedarsoftware/json-io/4.0.0/json-io-4.0.0.jar");
    FileUtils.copyURLToFile(url, new File(jsonerFolder.getParent() + "\\mods\\json-io-4.0.0.jar"));
} catch (Exception e1) {
    logger.error("Downloading json-io failed with an exception");
    e1.printStackTrace();
}

但下载的文件不是jar,而是一个包含以下内容的HTML文件:

<html>
<head><title>302 Found</title></head>
<body bgcolor="white">
<center><h1>302 Found</h1></center>
<hr><center>nginx/0.8.55</center>
</body>
</html>

在浏览器中访问时直接下载(在我的情况下是Google Chrome),但在使用FileUtils时无法正确下载。

如何使用FileUtils正确下载文件?

2 个答案:

答案 0 :(得分:0)

代码302指的是重定位。正确的URL将在位置标题中传输。然后,您的浏览器会在那里获取文件表单。见https://en.wikipedia.org/wiki/HTTP_302

尝试https://repo1.maven.org/maven2/com/cedarsoftware/json-io/4.0.0/json-io-4.0.0.jar

对于FileUtils,请参阅How to use FileUtils IO correctly?

答案 1 :(得分:0)

您可以使用ApacheHttpClient而不是FileUtils。 Httpclient可以支持重定向。

类似这样的事情

var httpclient = new DefaultHttpClient();

var httpget = new HttpGet('http://myserver/mypath');
var response = httpclient.execute(httpget);
var entity = response.getEntity();
if (entity != null) {
    var fos = new java.io.FileOutputStream('c:\\temp\\myfile.ext');
    entity.writeTo(fos);
    fos.close();
}