我正在尝试用Java下载.torrent文件。我提到了这个SO(Java .torrent file download)问题,但是当我运行该程序时,它没有开始下载。它什么都没做。有人可以向我解释我做错了什么。我在下面发布了一个SSCCE。谢谢你提前。
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.net.URL;
import java.nio.channels.Channels;
import java.nio.channels.ReadableByteChannel;
public class Test {
public static void main(String[] args) throws IOException {
String link = "http://torrage.com/torrent/13764753227BCBE3E8E82C058A7D5CE2BDDF9857.torrent";
String path = "/Users/Bob/Documents";
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();
}
}
答案 0 :(得分:1)
您没有正确格式化文件路径。代码的这一部分是你的问题:
File f = new File(path + "t2.torrent");
将其更改为:
File f = new File(path + File.separator + "t2.torrent");
修改强>
如果这不起作用,您应该尝试修复文件路径。你确定它不是C:\Users\Bob\Documents
吗?
修复文件路径并正确下载torrent文件后,如果您的torrent程序在加载torrent时出错,则可能是因为.torrent文件采用GZIP格式。要解决此问题,只需按照您链接到的问题发布的解决方案:
String link = "http://torrage.com/torrent/13764753227BCBE3E8E82C058A7D5CE2BDDF9857.torrent";
String path = "/Users/Bob/Documents";
URL website = new URL(link);
try (InputStream is = new GZIPInputStream(website.openStream())) {
Files.copy(is, Paths.get(path + File.separator + "t2.torrent"));
is.close();
}