创建 Java 项目的构建
我的 eclipse 中有一个独立的项目。外部 jar 也很少。该程序执行良好并给出了所需的结果。现在我需要它从命令提示符运行。我只想运行 eclipse 生成的类文件。我将如何运行它。当我尝试从命令提示符运行它时,它给出了未找到类的异常。我还尝试制作一个可执行的 jar,但它也没有运行。我需要创建可执行的 jar或者我可以简单地从命令提示符运行它..告诉我出路..
谢谢 库希克
I have a stand alone project in my eclipse.There are few external jar as well.The programme is executing well and giving required result. Now i need it to run from command prompt.and i just want to run the class file generated by eclipse. how i will be able to run it.When i am tring to run it from commend prompt it is giving class not found exception.I also tried to make an executable jar,but that is also not running.do i need to create executable jar or i can simply run it from command prompt..tell me the way out..
thanks
koushik
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
分步指南 at
我建议您浏览 jar、类路径和java的其他基本构建块,例如检查有关jar的信息< /a>
A step by step guide at
I recommend you to go through jar, class path and other basic building blocks of java for eg check this about jar
尝试使用此命令 java -cp 。包名.类名
try using this command
java -cp . package.name.className