Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 cygwin 通过命令运行 nutch
bin/nutch crawl urls -dir crawl -depth 3 -topN 50
现在,我正在尝试对 crawl.java 进行更改,但是当我再次运行时,这些更改并没有反映在输出中。事实上,即使代码的主要部分已被删除,该命令也不会出错并产生相同的输出。
如何使代码中的更改反映在输出中?我是初学者,请大家帮忙。
好的,对于初学者:
下载 apache ant 并将其安装在cygwin(如果这是您用来运行 nutch 的话)的主文件夹中
cygwin
对代码进行更改cygwin后cd-ing,在项目目录之后执行以下命令。
cd-ing
1)ant clean
ant clean
2)ant
ant
这将清理并构建项目。现在运行它,您的代码中的更改将被反映。
将“out”文件夹的内容复制到“build”文件夹中!