This Example shows you how to Ignore Comments in an XML File. JAXP is an interface which provides parsing of xml documents. Here the Document BuilderFactory is used to create new DOM parsers. Methods used in code given below for Ignoring Comments is described below:-
DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance():-This method Creates a DocumentBuilder Factory .DocumentBuilder Factory is a Class that enables application to obtain parser for building DOM trees from XML Document
DocumentBuilder builder = Factory.newDocumentBuilder():-This method creates a DocumentBuilder object with the help of a DocumentBuilderFactory
File file = new File("Document4.xml"):-Creates a new File.
factory.setIgnoringComments(true):-This method describes that the parser produced by the above code will ignore comments.
TransformerFactory factory = TransformerFactory.newInstance():-TransformerFactory is a class that is used to create Transformer objects. A TransformerFactory instance can be used to create Transformer and Templates objects.
transformer.transform(source, result):-This function organize data according to a style sheet as we are retrieving it from the File.
Xml code for the program generated is:-
|
IgnoringComments.java
|
Output of the program:-
|
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: XML,XML Tutorials,Online XML Tutorial,XML Help Tutorials
Post your Comment