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.
我需要从 XML 文件中读取 XSL uri,如下所示:
<?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="xsl_uri"?> <Document> ... </Document>
我正在使用 org.w3c.dom.Document。有没有办法得到那个uri?
没有 DOM 方法可以做到这一点:您必须将处理指令作为文本读取,并“手动”解析处理指令中的伪属性。
但是,根据您想要该信息的原因以及您想用它做什么,您可以使用
TransformerFactory.getAssociatedStylesheet()