我应该在 jar 文件的 manifest.mf 中给出什么主类,该文件有一个没有主类的小程序?
我有一个小程序(没有主类),我有歌曲文件(beep.au)和图片文件(a.gif){我在我的小程序中使用了这2个文件}并且我创建了一个jar文件a .jar 包含小程序类、歌曲文件和图片文件...但是当我运行 jar 文件时出现错误:- Main-Class 清单属性未找到...我应该做什么运行jar文件??? (我应该给manifest.mf什么主类,因为我的小程序没有主方法,所以没有主类)
i am having a applet(not having a main class) and i am having song file (beep.au) and picture file ( a.gif){these 2 files i have used in my applet} and i have created a jar file a.jar which contains the applet class , song file and picture file ... but when i run the jar file i get an error :- Main-Class manifest-attribute not found .... what should i have to do to do to run the jar file???? (what main class should i give to the manifest.mf as my applet is not having a main method so no main class)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您尝试在 Web 浏览器中运行小程序,或者尝试从命令行运行小程序时,您是否会收到此错误?
如果您正在制作小程序,则需要创建一个 html 页面。在该页面中,您创建一个 applet 标记,并将 code 属性设置为“main”Applet 类。
Do you get this error when you try to run the applet in a web browser, or are you trying to run the applet from the command line?
If you are making an applet, you need to create an html page. In that page you create an applet tag with the code attribute set to the "main" Applet class.