无法加载主类清单 Lucene Spellchecker
我正在使用 Lucene 构建拼写检查器并获取
Failed to load Main-Class manifest attribute from
/lib/lucene-spellchecker-2.3.2.jar
该文件位于正确的路径中:
javac -Xlint:unchecked -cp lib/lucene-core-2.9.0.jar;lib/lucene-spellchecker-2.3.2.jar -source 1.5 -target 1.5 \
-d bin/ `find src/ -name *.java`
我在这里缺少什么?
I'm building a spellchecker using Lucene and getting a
Failed to load Main-Class manifest attribute from
/lib/lucene-spellchecker-2.3.2.jar
That file is in the right path a la:
javac -Xlint:unchecked -cp lib/lucene-core-2.9.0.jar;lib/lucene-spellchecker-2.3.2.jar -source 1.5 -target 1.5 \
-d bin/ `find src/ -name *.java`
What am I missing here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您似乎使用的是 Unix 系统,因此您需要使用
:
而不是;
作为路径分隔符。It appears that you're on a Unix system so you need to use
:
instead of;
for your path separator.