gpt4 book ai didi

java - 为什么当 OntClass 创建一个个体时行为不正常?

转载 作者:行者123 更新时间:2023-11-29 04:18:56 25 4
gpt4 key购买 nike

问题是:我希望这段代码具有那个特殊个体的 rdf:type 属性,但是 model.write 方法给了我这样的输出:

<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:j.0="http://microhard.com/graph/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:j.1="http://microhard.com/property/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
<owl:Class rdf:about="http://microhard.com/graph/POI"/>
<j.0:POI>
<j.1:p1>111</j.1:p1>
</j.0:POI>
</rdf:RDF>

这是代码:

public class Main {

private static final String NS = "http://microhard.com/graph/";

public static void main(String[] args) {
OntModel m = ModelFactory.createOntologyModel(OntModelSpec.OWL_MEM);
OntClass klass = m.createClass(NS + "POI");
Individual in = klass.createIndividual();
in.addProperty(m.createProperty("http://microhard.com/property/p1"), "111");
m.write(System.out, "RDF/XML");

}
}

最佳答案

它是一个类型化的空白节点:

RDF/XML 2.13 Typed Node Elements

关于java - 为什么当 OntClass 创建一个个体时行为不正常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50471106/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com