【发布时间】:2016-12-02 08:03:48
【问题描述】:
我正在生成正确的 cxml,但开头缺少 doctype。
如何在<?xml version="1.0" encoding="utf-8"?> 之后添加以下文档类型并使用 XSLT 映射复制剩余的 xml。
<!DOCTYPE cXML SYSTEM "http://xml.cxml.org/schemas/cXML/1.2.032/cXML.dtd">
想要的输出应该是这样的
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE cXML SYSTEM "http://xml.cxml.org/schemas/cXML/1.2.032/cXML.dtd">
<xml>
<field>.... (followed by remaining xml structure)
谢谢, 瓦伦
【问题讨论】: