3

如果我的数据库中字符串的最长值为

"ABC<DEF"

XSD 中此字符串数据类型的 maxLength 限制应该是 7(编码前)还是应该是 10(编码后),即

"ABC&lt;DEF"
4

1 回答 1

2

简短的回答:预编码。

在 XML 中编码字符不会影响字符串的“真实”长度值。

快速测试:

<?xml version="1.0" encoding="utf-8" ?>
<xsd:schema targetNamespace="http://tempuri.org/XMLSchema.xsd" elementFormDefault="qualified" xmlns="http://tempuri.org/XMLSchema.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="root">
        <xsd:simpleType>
            <xsd:restriction base="xsd:string">
                <xsd:maxLength value="2"/>
            </xsd:restriction>
        </xsd:simpleType>
    </xsd:element>
</xsd:schema>

有效的 XML :)

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<!-- Sample XML generated by QTAssistant (http://www.paschidev.com) -->
<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org/XMLSchema.xsd">&amp;1</root>
于 2012-04-25T14:46:43.523 回答