cygwin编程
如何在 cygwin 中编译 java 程序?
how do you compile java progrmas in cygwin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 cygwin 中编译 java 程序?
how do you compile java progrmas in cygwin?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
像平常一样使用
javac
- 或者使用像 Ant 这样在 cygwin 下工作的东西,以及您提出这个问题的事实表明您遇到了问题 - 您能解释一下您尝试过什么以及出了什么问题吗?
With
javac
, as normal - alternatively using something like Ant which works under cygwin, with some caveats.The fact that you're asking the question suggests you've had problems - could you explain what you've tried and what went wrong?
Maven 也可以开箱即用。西格温与 Windows cmd 相比,mintty 组合非常出色。
当从 cygwin 运行 java 程序时,您应该记住 java 命令位于 Windows 中,因此它需要 Windows 的 jar 路径。更多信息:http://www.inonit.com/cygwin/faq/。
Maven works also right out of the box. Cygwin & mintty combo rocks compared to windows cmd.
When running java-programs from cygwin you should remember that java-command is in windows, so it requires windows paths to jars. More info: http://www.inonit.com/cygwin/faq/.
与使用“普通”Windows shell 的方式相同。
The same way as you would using a "normal" Windows shell.
您可以使用 javac 命令编译单个类文件。如果您有一个现有项目,它可能有一个
build.xml
、pom.xml
或Makefile
,在这种情况下您需要运行分别是ant
、mvn
或make
。You can compile individual class files with the
javac
command. If you have an existing project, it likely has abuild.xml
,pom.xml
, orMakefile
, in which case you need to runant
,mvn
, ormake
respectively.