我正在开发一个从 xml 文件中读取一些数据的 Java 应用程序。尝试执行时,我收到此错误:
org.xml.sax.SAXParseException;systemId: 文件:/c:/myxmlfile.xml; 行号:7;列号:55;s4s-elt-character:除“xs:appinfo”和“xs:documentation”之外的模式元素中不允许使用非空白字符。看到“我的名字价值”。
我的 xml 文件以:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<gdl_set xmlns="http://www.mywebsite.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.mywebsite.com/myxsddefinition.xsd"
shortname="Shortname">
<name>My Name Value</name>
你能帮我理解问题出在哪里吗?