This Example shows you how to Emmit a DOCTYPE Declaration in a DOM document. JAXP (Java API for XML Processing) is an interface which provides parsing of xml documents. Here the Document BuilderFactory is used to create new DOM parsers.Some of the methods used in code given below for Emitting DOCTYPE Declaration are 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("Document2.xml"):-Creates a new File.
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.
t.setOutputProperty(OutputKeys.DOCTYPE_PUBLIC, "publicId"):-By this method we can set an output property that will be in effect for the transformation.Xml code for the program generated is:-
|
EmittingDOCType.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: Emitting DOCTYPE Declaration while writing XML File
Post your Comment