Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Serialization with SAX

From: Johannes Lichtenberger <Johannes.Lichtenberger@------------.-->
To: xml-dev@-----.---.---
Date: 1/15/2009 9:30:00 PM
Hello,

I want to be able to serialize an input XML document to an output
document. It seems to be stupid, but I want to read until the say 2000th
page-element and then skip everything. It seems I can serialize it with
something like

SAXTransformerFactory fac = (SAXTransformerFactory)TransformerFactory.newInstance();
handler = fac.newTransformerHandler();
Transformer t = handler.getTransformer();
t.setOutputProperty(OutputKeys.METHOD, "xml");
t.setOutputProperty(OutputKeys.INDENT, "yes");
handler.setResult(new StreamResult(new FileOutputStream(filename)));

Now I'm not sure how to implement something like a check against a counter within every callback-method. Something like

private long counter = 0;

/**
 * {@inheritdoc}
 */
public void startElement(String namespaceURI, String localName, String qName,
      Attributes atts) throws SAXException {
 
  if (localName.equalsIgnoreCase("page")) {
    counter++;
  }
    
  if (counter < ARTICLES) {
    // TODO: everything which really has to be done to serialize the doc.
  }
}

I'm not sure where to get the source for a full serialization implemention and add "if (counter < ARTICLES) {" to every method. Or simply how to add such a check ;-) I simply want to have 2000 pages (page-Elements with all descendants) in the output and then skip everything else.

greetings,
Johannes


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent