예제 #1
0
 /**
  * Returns an XMLBeans document as a String with full Fedora/RDF namespace support
  *
  * @param doc The document to parse to a String
  * @return String version of the document. This will contain prefixes for rdf and myns
  */
 public static String xmlToString(XmlObject doc) {
   HashMap<String, String> namespaces = new HashMap<String, String>();
   namespaces.put("http://www.w3.org/1999/02/22-rdf-syntax-ns#", "rdf");
   namespaces.put("http://www.nsdl.org/ontologies/relationships#", "myns");
   XmlOptions xmlOptions = new XmlOptions();
   xmlOptions.setSaveSuggestedPrefixes(namespaces);
   xmlOptions.setSaveAggressiveNamespaces();
   StringWriter out = new StringWriter();
   try {
     doc.save(out, xmlOptions);
     return out.toString();
   } catch (Exception e) {
     return null;
   }
 }
예제 #2
0
  /**
   * Dumps an XML document to disk.
   *
   * @param doc The document to dump to disk
   * @param filePath The full path and name of the file
   */
  public static void dumpXML(XmlObject doc, String filePath) {
    HashMap<String, String> namespaces = new HashMap<String, String>();
    namespaces.put("http://www.w3.org/1999/02/22-rdf-syntax-ns#", "rdf");
    namespaces.put("http://www.nsdl.org/ontologies/relationships#", "myns");
    XmlOptions xmlOptions = new XmlOptions();
    xmlOptions.setSavePrettyPrint();
    xmlOptions.setSavePrettyPrintIndent(2);
    // xmlOptions.setUseDefaultNamespace();
    // xmlOptions.setSaveAggressiveNamespaces();
    xmlOptions.setSaveSuggestedPrefixes(namespaces);
    // xmlOptions.setSaveNamespacesFirst();

    try {
      doc.save(new File(filePath), xmlOptions);
    } catch (Exception e) {
    }
  }