我对XML文件不好,但我需要使用一个进行测试,看起来它写得不正确:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<command action="send" id="1234" [reconnect_after = 0] >
<clip id="1">PD94bWwgdmVyc2lvbj0iMS4wIiBlb</clip>
<clip id="2">kjshdf23987iewjfnb892q34qdhadhax</clip>
</command>
</root>
我使用XML验证器进行了测试,结果如下:
Error: Can not find declaration of element 'root'.
Error Position:
<root>
Error: Element type "command" must be followed by attribute specifications: ">" or "/>".
Error Position:
<command action="resolve" id="1234" [reconnect_after = 0] >
尽管有错误描述我真的不知道如何更正文件。谁能帮我?
感谢。
答案 0 :(得分:4)
将[reconnect_after = 0]
替换为reconnect_after="0"
。