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:
<foreign lang="gre">‘<LM lemma="auieo" catg="fg">auieo</LM>’</foreign>
我正在使用 Xstream,我尝试编写一个特定的转换器,但它不起作用:(我不明白如何在“文本”块和引理 xml 中拆分外部内容(我有一个特定的转换器)
Xstream 无法解析混合内容。我用 xslt 预处理 xml 并将其转换为未混合的 xml,使用以下命令:
<xsl:template match="text()"> <t> <xsl:value-of select="."/> </t> </xsl:template>