ここに示すように、crawler4jの基本的な形式を実行しようとしています。rootFolderとnumberOfCrawlersを次のように定義して、最初の数行を変更しました。
public class BasicCrawlController {
public static void main(String[] args) throws Exception {
if (args.length != 2) {
System.out.println("Needed parameters: ");
System.out.println("\t rootFolder (it will contain intermediate crawl data)");
System.out.println("\t numberOfCralwers (number of concurrent threads)");
return;
}
/*
* crawlStorageFolder is a folder where intermediate crawl data is
* stored.
*/
String crawlStorageFolder = args[0];
args[0] = "/data/crawl/root";
/*
* numberOfCrawlers shows the number of concurrent threads that should
* be initiated for crawling.
*/
int numberOfCrawlers = Integer.parseInt(args[1]);
args[1] = "7";
CrawlConfig config = new CrawlConfig();
config.setCrawlStorageFolder(crawlStorageFolder);
どのように定義しても、エラーが発生します
Needed parameters:
rootFolder (it will contain intermediate crawl data)
numberOfCralwers (number of concurrent threads)
「実行設定」ウィンドウでパラメータを設定する必要があると思いますが、それが何を意味するのかわかりません。この基本的なクローラーを適切に構成して起動して実行するにはどうすればよいですか?