当ant运行在JDK1.6中时如何将类编译到JDK1.5
我的开发环境运行在JDK1.6中,我需要编译一些类,以便它们与运行JDK1.5的客户端兼容。 我该如何使用“javac”ant 目标来做到这一点?
My development environment is running in JDK1.6, and I need to compile some classes so they are compatible with a client running JDK1.5. How would I do this with the 'javac' ant target?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
命令行:javac -target 1.5 sourcefiles
Ant:
< javac srcdir="${src} destdir="${build}" target="1.5" />
Command line : javac -target 1.5 sourcefiles
Ant:
< javac srcdir="${src} destdir="${build}" target="1.5" />