我在Java应用程序中使用Jena(apache-jena-libs 3.0.1)创建RDF模型并序列化为RDF / XML。我使用的是https://jena.apache.org/documentation/io/rdfxml_howto.html中记录的相同方法

FileOutputStream out = new FileOutputStream( new File(dir, filename + ".xml") );
RDFWriter rdfWriter = notificationModel.getWriter("RDF/XML-ABBREV");
rdfWriter.setProperty("showXmlDeclaration", "true");
rdfWriter.setProperty("showDoctypeDeclaration", "true");
rdfWriter.write(notificationModel, out, null);


但是,作者忽略了任何属性,它们对生成的XML没有影响。有任何想法吗?

最佳答案

有一个错误(仅记录为JENA-1168)

解决方法是使用

RDFWriter rdfWriter = new org.apache.jena.rdfxml.xmloutput.impl.Abbreviated() ;

07-25 22:21