Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 .net 应用程序中,我正在尝试使用 saxon xslt 处理 xml,xslt 版本是 2.0。当数据很大时,我收到以下错误。
[net.sf.saxon.trans.XPathException] = {"org.xml.sax.SAXParseException: XML 文档结构必须在同一个实体内开始和结束。"}
有什么想法吗?提前致谢。
您提供的消息向我表明,您尝试转换的 XML 文档(或者可能是 XSLT 样式表)不是格式良好的 XML。您可以使用 XML 解析器读取 XML 文档(和样式表)吗?