在eclipse中打包可执行jar文件时出错

时间:2012-09-21 22:28:53

标签: java eclipse jar packaging executable-jar

我有一个可以在eclipse中正确运行的Java代码。

enter image description here enter image description here

我需要在eclipse之外运行这个java程序,所以我尝试将其导出为可执行jar文件。

enter image description here

我有一个警告: enter image description here

然后,我让JAR使用Resource is out of sync消息创建失败的错误。

enter image description here

可能有什么问题?在eclipse之外执行java程序的命令是什么?

ADDED

谷歌搜索(Eclipse source out of sync with file system)以删除resource is out of sync错误,但我有很多duplicate errors

enter image description here

为什么会出现这些错误?我该如何删除它们?我从mercurial存储库下载了该项目。

2 个答案:

答案 0 :(得分:0)

我可以生成可执行jar,这是我必须做的总结才能使它工作。

删除重复文件。

我发现了一些错误消息,说有重复的文件。我无法理解为什么eclipse认为有重复的文件,但通过删除文件,我可以删除错误。

排除部分文件

在构建中 - >配置构建路径 enter image description here

我必须删除或排除源文件夹。

enter image description here

始终通过刷新同步

我必须使用F5键来刷新构建,或者我可以使用eclipse设置自动执行此操作:enter image description here

答案 1 :(得分:0)

你有这样的情况:项目A指的是B& C. C也指B,你试图为A创建一个可运行的jar?

这对我来说是个问题。我有些如何设法在A中删除C的依赖,这有帮助!