我想从这个链接下载一个 .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 不是有效的编码!
从我在互联网上阅读的内容中,我了解到这些文件具有特殊的编码。下载结束编码这种文件的正确方法是什么。谢谢!