I have a simple sax parser , which is currently printing the names of the elements present,
public class xmlTest {
public static void main(String[] args) {
DefaultHandler handler = new DefaultHandler() {
public void startElement(String uri, String lName,
String ele, Attributes attributes) throws SAXException {
//print elements of xml
System.out.println(ele);
}
};
try {
SAXParserFactory parserFact = SAXParserFactory.newInstance();
SAXParser parser = parserFact.newSAXParser();
System.out.println("XML Elements: ");
parser.parse("C:\\TestSource\\c.xml", handler);
} catch (Exception e) {
e.printStackTrace();
}
}
}
Now instead of having it run through main and mentioning the file as c.xml , i want this to be called from another program and have the input from a buffered reader , (with all the necessary conversions)
here is the test code
public void testCheck() throws FileNotFoundException {
System.out.println("check");
BufferedReader br = new BufferedReader(new FileReader("c:\\TestSource\\c.xml"));
StringBuffer sb = new StringBuffer();
String line = null;
try {
while ((line = br.readLine()) != null) {
sb.append(line);
}
//Read the contents and move them to a string
//this prints the contents of the xml file perfectly
System.out.println(sb);
SAXParserFactory parserFact = SAXParserFactory.newInstance();
SAXParser parser = parserFact.newSAXParser();
System.out.println("XML Elements: ");
DefaultHandler handler = new DefaultHandler() {
public void startElement(String uri, String lName,
String ele, Attributes attributes) throws SAXException {
//print elements of xml
System.out.println(ele);
}
};
parser.parse(new InputSource(new StringReader(sb.toString())), handler);
} catch (Exception e) {
e.printStackTrace();
}
}
This doesnt seem to work, but it is printing the contents from the file. i even changed the parse.parse line to accept a file directly , even that is not working. Am clueless as to whats happening.
StringBuilderis not synchronized and therefor is faster thanStringBuffer. – khachik Dec 8 '10 at 20:29