我有这个RDF文件:
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:j.0="http://relation/" >
<rdf:Description rdf:about="http://Group/row100">
<j.0:Codice>VC</j.0:Codice>
<j.0:Nome>Vercelli</j.0:Nome>
<j.0:Regione>Piemonte</j.0:Regione>
</rdf:Description>
<rdf:Description rdf:about="http://Group/row63">
<j.0:Codice>MT</j.0:Codice>
<j.0:Nome>Matera</j.0:Nome>
<j.0:Regione>Basilicata</j.0:Regione>
</rdf:Description>
<rdf:Description rdf:about="http://Group/row30">
<j.0:Codice>CA</j.0:Codice>
<j.0:Nome>Cagliari</j.0:Nome>
<j.0:Regione>Sardegna</j.0:Regione>
</rdf:Description>
<rdf:Description rdf:about="http://Group/row57">
<j.0:Codice>LU</j.0:Codice>
<j.0:Nome>Lucca</j.0:Nome>
<j.0:Regione>Toscana</j.0:Regione>
</rdf:Description>
<rdf:Description rdf:about="http://Group/row71">
<j.0:Codice>PD</j.0:Codice>
<j.0:Nome>Padova</j.0:Nome>
<j.0:Regione>Veneto</j.0:Regione>
</rdf:Description>
<rdf:Description rdf:about="http://Group/row14">
<j.0:Codice>TN</j.0:Codice>
<j.0:Nome>Trento</j.0:Nome>
<j.0:Regione>TrentinoAltoAdige</j.0:Regione>
</rdf:Description>
</rdf:RDF>
如何将我的文件与其他外部数据集链接为DBPEDIA?
我想在Java代码中使用自动化工具。我研究过“丝绸”,但它想要输入本体,而我不想在输入中提供本体。
提前致谢。
答案 0 :(得分:2)
您可以通过附加文字来完成此操作,例如: &#34;特伦蒂诺&#34;,到dbpedia网址&#34; http://dbpedia.org/resource/&#34; =&GT; http://dbpedia.org/resource/Trentino。
因为一些文字不会产生任何结果,例如&#34; http://dbpedia.org/resource/TrentinoAltoAdige&#34;,您想要预处理数据。在您的情况下,将文字改为&#34; http://dbpedia.org/resource/Trentino_Alto_Adige&#34; (参见模式:在大写字符之前插入&#39; _&#39;除了它之外的第一个字符)。
将您的数据与属性互连,例如rdf:seeAlso
或者,如果您想要链接到维基百科,例如<http://purl.org/ontology/mo/wikipedia>
。