您无法使用 Jena 解析 XML,除非它是 RDF/XML。
您必须使用 XLST 将 XML 转换为 RDF 或使用 Java XML 库解析 XML 以获取数据并从感兴趣的数据创建三元组。
使用 XSLT 相当简单,如下例所示。
由于该网站是 URL,因此我将其用作 URI 而不是文字。此外,FOAF 是常见的名称。所以,我会使用类似的东西:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:foaf="http://xmlns.com/foaf/spec/"
xmlns:foo="http://example.com/foo#">
<xsl:template match="/">
<rdf:RDF>
<rdf:Description rdf:about="http://www.example.com/xml">
<xsl:apply-templates/>
</rdf:Description>
</rdf:RDF>
</xsl:template>
<xsl:template match="person">
<xsl:variable name="critic"><xsl:value-of select="name"/></xsl:variable>
<xsl:variable name="criticWebsite"><xsl:value-of select="website/@url"/</xsl:variable>
<foo:hasCritic>
<rdf:Description rdf:about="http://www.example.com/critic/{$critic}">
<foaf:name><xsl:value-of select="name"/></foaf:name>
<foaf:homepage>
<rdf:Description rdf:about="http://{$criticWebsite}">
<rdfs:label><xsl:value-of select="website"/></rdfs:label>
</rdf:Description>
</foaf:homepage>
</rdf:Description>
</foo:hasCritic>
</xsl:template>
</xsl:stylesheet>
这会给你:
<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:foaf="http://xmlns.com/foaf/spec/"
xmlns:foo="http://example.com/foo#">
<rdf:Description rdf:about="http://www.example.com/xml">
<foo:hasCritic>
<rdf:Description rdf:about="http://www.example.com/critic/Joe">
<foaf:name>Joe</foaf:name>
<foaf:homepage>
<rdf:Description rdf:about="http://www.example1.com">
<rdfs:label>contact1</rdfs:label>
</rdf:Description>
</foaf:homepage>
</rdf:Description>
</foo:hasCritic>
<foo:hasCritic>
<rdf:Description rdf:about="http://www.example.com/critic/Anna">
<foaf:name>Anna</foaf:name>
<foaf:homepage>
<rdf:Description rdf:about="http://www.example2.com">
<rdfs:label>contact2</rdfs:label>
</rdf:Description>
</foaf:homepage>
</rdf:Description>
</foo:hasCritic>
</rdf:Description>
</rdf:RDF>
然后您可以将 RDF 文件加载到 Jena