我尝试使用javac – source 1.5 – target 1.4
编译我的网络应用程序我最终得到了错误:
javac:source release 1.5需要目标版本1.5
因为我正在使用泛型和其他功能;当我尝试使用–source 1.4
进行编译时,我最终得到了错误:
(use -source 5 or higher to enable generics)
(use -source 5 or higher to enable for-each loops)
(use -source 5 or higher to enable annotations)
我需要部署到安装了Java 1.4的盒子;其中我无法控制,所以升级是不可能的。
建议?