-1

基本上我正在制作一个程序,它可以通过使用许多 API 从电影中获取所有信息。它还从电影中下载 .torrent 文件。我想在我的程序中下载它并想使用tTorrent。唯一的问题是:我必须如何使用它?在阅读所有安装或自述文件时,它对我没有任何意义。我了解如何安装普通库,但这在多个地图等中有多个文件。

所以,第一个问题:你能简单地解释一下我是如何一步一步安装库的吗?

第二个问题:您能否也给我代码如何使用它与 .torrent 文件一起下载?

顺便说一句:如果有任何方法可以使用 qBittorrent 自动打开 .torrent 文件,那么这将是我唯一可以接受的选择。

4

1 回答 1

0

1) 安装 maven,查看如何使用 maven 启动一个快速的“Hello World”项目。一旦你掌握了它,添加

<dependency>
  <groupId>com.turn</groupId>
  <artifactId>ttorrent</artifactId>
  <version>1.4</version>
</dependency>

到你的 pom.xml

2)从您链接的页面:

// First, instantiate the Client object.
Client client = new Client(
  // This is the interface the client will listen on (you might need something
  // else than localhost here).
  InetAddress.getLocalHost(),

  // Load the torrent from the torrent file and use the given
  // output directory. Partials downloads are automatically recovered.
  SharedTorrent.fromFile(
    new File("/path/to/your.torrent"),
    new File("/path/to/output/directory")));

// You can optionally set download/upload rate limits
// in kB/second. Setting a limit to 0.0 disables rate
// limits.
client.setMaxDownloadRate(50.0);
client.setMaxUploadRate(50.0);

// At this point, can you either call download() to download the torrent and
// stop immediately after...
client.download();

// Or call client.share(...) with a seed time in seconds:
// client.share(3600);
// Which would seed the torrent for an hour after the download is complete.

// Downloading and seeding is done in background threads.
// To wait for this process to finish, call:
client.waitForCompletion();

// At any time you can call client.stop() to interrupt the download.
于 2015-09-03T13:59:45.790 回答