RE: [xsl] Java code example of transforming via SAX with JAXP1.1?

Subject: RE: [xsl] Java code example of transforming via SAX with JAXP1.1?
From: David Nelson <David.Nelson@xxxxxxxxxxxxxx>
Date: Thu, 20 Jun 2002 07:21:26 -0500
Yes but I believe the error listed is caused by configuration issues, not
code.  

-->  -----Original Message-----
-->  From: Andrew Welch [mailto:awelch@xxxxxxxxxxxxxxx]
-->  Sent: Thursday, June 20, 2002 2:56 AM
-->  To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
-->  Subject: RE: [xsl] Java code example of transforming via SAX with
-->  JAXP1.1?
-->  
-->  
-->  
-->  Wasn't the original request about SAX parsing??
-->  
-->  (for help on what all this means visit http://www.saxproject.org )
-->  
-->  import java.io.*;
-->  import org.xml.sax.*;
-->  import org.xml.sax.helpers.DefaultHandler;
-->  import javax.xml.parsers.SAXParserFactory;
-->  import javax.xml.parsers.ParserConfigurationException;
-->  import javax.xml.parsers.SAXParser;
-->  import com.icl.saxon.*;
-->  
-->  public class ASaxParser extends DefaultHandler {
-->     
-->      private String currentElement_ = null;
-->      private StringBuffer currentContent_ = null;
-->      private Attributes currentAtts_ = null;
-->      
-->      public void getFile(String path) {
-->          SAXParserFactory factory = SAXParserFactory.newInstance();
-->          try {
-->              SAXParser saxParser = factory.newSAXParser();
-->              saxParser.parse( new File(path), this );
-->  
-->          } catch (Throwable t) {
-->              t.printStackTrace();
-->          }
-->      }
-->      
-->      public void startDocument()
-->      {
-->      }
-->  
-->      public void endDocument()
-->      {
-->      }
-->    
-->      public void startElement(String uri, String name,String qName,
-->  Attributes atts)
-->      {
-->      }
-->  
-->      public void endElement(String uri, String name, String qName) 
-->      {
-->      }
-->   }
-->  
-->  ---
-->  Outgoing mail is certified Virus Free.
-->  Checked by AVG anti-virus system (http://www.grisoft.com).
-->  Version: 6.0.350 / Virus Database: 196 - Release Date: 17/04/2002
-->   
-->  
-->   XSL-List info and archive:  
-->  http://www.mulberrytech.com/xsl/xsl-list
-->  

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread