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.
谁能解释为什么我们需要 Ant 构建工具中的 build.xml 中的以下行。它的用途是什么?
<?xml version="1.0" ?>
提前致谢
问候, 卡提克
实际上 xml 包含 1.0 和 1.1 版本,不同的是 1.0 支持 unicode 字符。所以 Ant 文件是基于 XML=1.0 的。所以要指定支持的版本,在 build.xml 中提到了上面的行。谢谢