XML文件 提示元素类型"propertyfile"必须后跟属性规范">"或 "/>" 如何解决?

最近在为公司的老项目修改Ant脚本,发现build的时候报错了,我单独写了个demo演示:

build.xml文件:

<?xml version="1.0" encoding="UTF-8"?>

<project default = "echoProperties">

<propertyfile = "build.properties"></propertyfile>

<targetname = "echoProperties">

<echo>Apache Ant version is ${ant.version} - You are at ${sitename}</echo>

</targetname>

</project>

build.properties

sitename=www.test.com

buildVersion=3.3.2

尝试改为<propertyfile = "build.properties"/>也不行,文件编码都是UTF8,能否有大佬帮忙看看?按理说xml语法好像也没错啊


回答:

propertyfiletargetname 都是 tag,不是attribute,不能 = xxx

以上是 XML文件 提示元素类型&quot;propertyfile&quot;必须后跟属性规范&quot;&gt;&quot;或 &quot;/&gt;&quot; 如何解决? 的全部内容, 来源链接: utcz.com/p/944838.html

回到顶部