找不到主类 x。程序将退出
我探索了 stackoverflow 上的其他线程,我探索了网络,但找不到解决方案...... 所以我在这里发布了完整的“hello world”示例。 我正在使用 Eclipse 3.6/jdk 1.6 我使用 swt 编写了一个类,并希望将其导出为可运行文件。
以下是我尝试执行此操作的方法:
File->Export->Java->Jar ...在以下对话框中,我选择创建新清单并选择我的 mainc 类作为入口点,导出并运行它但出现此错误:
找不到主类co.My。程序将退出
这是我的 Manifest.mf 文件,末尾有两个空行:
清单版本:1.0
主类:co.My
在课堂上我有方法:
public static void main(String args[])
这里是整个“hello world”项目的下载链接。 http://www.mediafire.com/?wl6mixmpatpglwh
I explore other threads on stackoverflow, I explore the web but couldn't find the solution...
so I am posting it here with full "hello world" example.
I am using Eclipse 3.6/jdk 1.6 I write a one class using swt and want to export it as runnable file.
Here is how I am trying to do it:
File->Export->Java->Jar ...in the following dialogs I select to create new manifest and select my mainc class for entry point, export it and run it but get this error:
Could not find the main class co.My. Program will Exit
Here is my Manifest.mf file, with two empty lines at the end:
Manifest-Version: 1.0
Main-Class: co.My
In class I have method:
public static void main(String args[])
And here is download link for whole "hello world" project.
http://www.mediafire.com/?wl6mixmpatpglwh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我没记错的话,Eclipse 中还有一个创建可运行 Jar 文件的选项。
If I remember good, there is in Eclipse also an option to create a Runnable Jar File.
这将有助于解决问题
This will help to solve the problem