我正在尝试导入以下所有Excel中的顶级元素,并得到此错误:
一个XML文档中只允许有一个顶级元素。2号线,位置2
以下是一个更改名称以保护信息的示例:
enter code here
<restrictions>
<defaultValue>false</defaultValue>
<description>Enable Test</description>
<key>Test_agent_enabled</key>
<restrictionType>bool</restrictionType>
<title>Enable Test</title>
<configUri>content://com.test.test/boolean/preferences/test_agent_enabled</configUri>
</restrictions>
<restrictions>
<defaultValue></defaultValue>
<description>Endpoint URL</description>
<key>cloud_endpoint</key>
<restrictionType>string</restrictionType>
<title>Endpoint URL</title>
<configUri>content://com.test.test/string/preferences/cloud_endpoint</configUri>
</restrictions>
enter code here
我有许多这样的块需要放入Excel中。
提前谢谢。
您可以添加一个新的顶级标签来修复它:
<top>
<restrictions>
<defaultValue>false</defaultValue>
<description>Enable Test</description>
<key>Test_agent_enabled</key>
<restrictionType>bool</restrictionType>
<title>Enable Test</title>
<configUri>content://com.test.test/boolean/preferences/test_agent_enabled</configUri>
</restrictions>
<restrictions>
<defaultValue></defaultValue>
<description>Endpoint URL</description>
<key>cloud_endpoint</key>
<restrictionType>string</restrictionType>
<title>Endpoint URL</title>
<configUri>content://com.test.test/string/preferences/cloud_endpoint</configUri>
</restrictions>
</top>