You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@nutch.apache.org by Elwin <ma...@gmail.com> on 2006/03/06 16:49:06 UTC

Problem when using FetchListTool

Here is part of my code:

File dbDir=new File(dbName); // the existing webdb
File tempDbDir = new File(tempDBName); //the temp webdb
WebDBAdminTool.main(new String[] {tempDBName, "-create"});
....
Enumeration e = webdb.links();
... //get links from webdb
injector.addPage(url); // inject a selected url  into a temp webdb
FetchListTool.main(new String[] {tempDBName,tempSegName});
... // fetch and update

But it seems that the code stops (not throw any exception) when using
FetchListTool.
I can't find out  what's wrong.