Package com.hp.hpl.jena.rdf.model

Examples of com.hp.hpl.jena.rdf.model.RDFWriter


    }
  }

  public String toXML() throws SimalRepositoryException {
    Model model = ResourceUtils.reachableClosure(getJenaResource());
    RDFWriter writer = model.getWriter("RDF/XML-ABBREV");
    if(writer instanceof BaseXMLWriter) {
      writer = setNsPrefixes((BaseXMLWriter) writer);
    }
    StringWriter sw = new StringWriter();
    writer.write(model, sw, null);

    return sw.toString();
  }
View Full Code Here

TOP

Related Classes of com.hp.hpl.jena.rdf.model.RDFWriter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.