Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 1.4 java 代码,我想用 1.5 编译器编译它,因为我想查看所有警告消息。我在 javac 中添加了 -Xlint 选项,但输出似乎没有变化,但我知道代码中至少有几个警告。
我将这两行添加到我的 ant 脚本的编译目标标记中:
<compilerarg value="-Xlint:all"/> <compilerarg line="-Xmaxwarns 10000"/>
谢谢您的回答。
您同时使用了 value 和 line 属性。Compilerarg 需要“其中之一”,请参阅文档。尝试仅使用行,例如:<compilerarg line="-Xlint:all -Xmaxwarns 10000"/>
<compilerarg line="-Xlint:all -Xmaxwarns 10000"/>