好的,谢谢你的建议。以下是解决方案(也许它对某人有用):
// CAPTCHA
// class: CaptchaDialogQueueEntry.java
// method: viaGui()
// This method handle all captcha requests and you can read it in this way:
captchaController.getCaptchaFile().toURI().toURL().toString() // this is the path of captcha file on your computer, you can read this and do anything
检查链接
您必须添加 LinkCollector 的链接,然后您可以添加文件做下载列表。这是代码:
LinkCollector
.getInstance()
.addCrawlerJob(
new LinkCollectingJob(
"http://bitshare.com/files/vddhv6sd/2002-Habakuk---Muzyka--slowa--liczba--kolor.rar.html"));
之后,您可以将所有添加的文件添加到下载列表:
for (int i = 0, c = LinkCollector.getInstance().getPackages()
.size(); i < c; i++) {
if (LinkCollector.getInstance().getPackages().get(i)
.getChildren().get(0).getSize() > 0) {
DownloadController.getInstance().addAll(
LinkCollector.getInstance().convert(
LinkCollector.getInstance().getPackages()
.get(i).getChildren(), true));
}
}
一切都是静态的,因此您可以创建自己的插件并在任何地方实现它。