-3

我想从仅使用网络种子的无跟踪器洪流中获取 url-list 的值。

我写了这个

     TorrentFile torrent = Bencode.DecodeTorrentFile("tr.torrent");
     BList urllist = (Blist)torrent["url-list"];

但这不起作用,因为 urllist 为空。如何获取 url-list ?

4

1 回答 1

0

执行以下操作后,您是否使用调试器来调查 torrent 变量中的内容?如果您在第二行设置断点,那里可能有大量数据......调试器是您的朋友。

TorrentFile torrent = Bencode.DecodeTorrentFile("tr.torrent");

另外,你是说追踪器吗?
看这里:https ://github.com/Krusen/BencodeNET

你可能只想要里面的东西

BList announceList = torrent["announce-list"];
于 2016-09-01T15:46:53.730 回答