2

我想从这个链接下载一个 .torrent 文件 http://torrage.com/torrent/13764753227BCBE3E8E82C058A7D5CE2BDDF9857.torrent 来做这个我使用这个代码

URL website = new URL(link);
ReadableByteChannel rbc = Channels.newChannel(website.openStream());
File f = new File(path+"t2.torrent");
FileOutputStream fos = new FileOutputStream(f);
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
fos.close();

现在,当我在 utorrent 中打开它时,我收到这条消息:无法加载“t2.torrent”:torrent 不是有效的编码!

从我在互联网上阅读的内容中,我了解到这些文件具有特殊的编码。下载结束编码这种文件的正确方法是什么。谢谢!

4

1 回答 1

4

torrent 文件损坏的原因是您从中下载它的 Web 服务器以压缩(gzipped)格式提供它。您可以使用以下代码在 Java 中解压缩它:

URL url = new URL(link);
try (InputStream is = new GZIPInputStream(url.openStream())) {
  Files.copy(is, Paths.get(path + "t2.torrent"));
}
于 2013-09-07T13:31:07.133 回答