Apache Jena RDFWriter.setProperty 无效

Apache Jena RDFWriter.setProperty has no effect

我在 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。有什么想法吗?

有bug(记录为JENA-1168)

解决方法是使用

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