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



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

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>

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

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

代码 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,请参阅如何正确使用 FileUtils IO?

你可以使用 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();
}

相关内容

  • 没有找到相关文章

最新更新