Home Answers Viewqa XML creating document in XML

 
 


Shridhu Chandel
creating document in XML
1 Answer(s)      4 years and 2 months ago
Posted in : XML

View Answers

March 23, 2009 at 12:10 AM


Hi friend,

Code to help in solving the problem :

import java.io.*;
import javax.xml.parsers.*;
import javax.xml.transform.*;
import javax.xml.transform.dom.*;
import javax.xml.transform.stream.*;
import org.w3c.dom.*;

public class CreatXMLFile {
public static void main(String[] args) throws Exception {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
System.out.print("Enter number to add elements in your XML file: ");
String str = bf.readLine();
int no = Integer.parseInt(str);
System.out.print("Enter root: ");
String root = bf.readLine();
DocumentBuilderFactory documentBuilderFactory =
DocumentBuilderFactory.newInstance();
DocumentBuilder documentBuilder =
documentBuilderFactory.newDocumentBuilder();
Document document = documentBuilder.newDocument();
Element rootElement = document.createElement(root);
document.appendChild(rootElement);
for (int i = 1; i <= no; i++){
System.out.print("Enter the element: ");
String element = bf.readLine();
System.out.print("Enter the data: ");
String data = bf.readLine();
Element em = document.createElement(element);
em.appendChild(document.createTextNode(data));
rootElement.appendChild(em);
}
TransformerFactory transformerFactory = TransformerFactory.newInstance();
Transformer transformer = transformerFactory.newTransformer();
DOMSource source = new DOMSource(document);
StreamResult result = new StreamResult(System.out);
transformer.transform(source, result);
}
}

Thanks









Related Pages:
creating document in XML - XML
creating document in XML  Create an XML document for catalogue...)); System.out.print("Enter number to add elements in your XML file: "); String... = documentBuilderFactory.newDocumentBuilder(); Document
creating tables as an xml document - XML
creating tables as an xml document  Create a table of a medal tally of the Olympic Games as an XML document. The table must have the name...(); DocumentBuilder docBuilder = builderFactory.newDocumentBuilder(); //creating a new
creating Xml - Java Beginners
creating Xml  how we can create a xml file using java Creating XML... object. Creating XML File is possible  Creating XML File is possible... by Element Object.4. Appeng this Elemnts to DOcumnet object.  Creating XML
Creating Blank DOM Document
Creating Blank DOM Document      ... to Parsing XML documents. With JAXP, we will use the Document BuilderFactory... xml document.   DocumentBuilderFactory uses the system property
Create - XML File (Document)
Create - XML File (Document)     ... document using the DOM APIs. This XML document uses  1.0 version  and UTF-8 encoding.  Description of program: This program helps in creating a XML
Reading an XML document using JDOM
Reading an XML document using JDOM       This Example shows you how to Read an XML document... for parsing, creating, manipulating, and serializing XML documents
Creating XMl file - XML
Creating XMl file   I went on this page: http://www.roseindia.net/xml/dom/createblankdomdocument.shtml and it shows me how to create an XML file, however there is something I don't understand. I have to create an XML file
xml document parsing
xml document parsing   Hi Guys, Xml document has been inserted into the database,how do i parse the xml document stored in database,so that xml document can be retrieved on to JSP file using jdbc/odbc connection. Please help me
Creating a DocumentFragment Subtree and Appending it to the Document
Creating a DocumentFragment Subtree and Appending it to the Document... this fragment tree to a DOM document. JAXP (Java API for XML Processing) is an interface which provides parsing of xml documents. Here the Document
Creating XML Tree
Creating XML Tree       This Example shows you how to Create an XMLTree in a DOM document. JAXP (Java API for XML Processing) is an interface which provides parsing of xml documents
Creating a DTD
.style1 { background-color: #FFFFFF; } Creating a DTD A document type definition (DTD) is used to validate XML files that reference the DTD file... etc for any XML file and defines constraints for how each element, attribute
retrieving xml document from database
retrieving xml document from database  Hi Guys, I want to retrieve the xml document stored in the database on to a jsp page using jdbc/odbc connnection.Please help me in implementing this feature. Thank You Madhu
creating index for xml files - XML
creating index for xml files  I would like to create an index file for xml files which exist in some directory. Say, my xml file is like below: smith 23 USA john 25 USA ... ... All xml files in the directory have
XML Schema
. They are extensible as they are written in XML Simple xml document, creating dtd and schema...: #FFFFFF; } XML Schema An XML Schema defines how to structure an XML document... occur in the xml document. 2. The child elements for an elements 3. The order
Creating MS Word document in java - Struts
Creating MS Word document in java  I have one template in MS Word which has some content. Now i want to read this doc file and wants to add some... the doc file , do some changes , adding header footer and creating new doc file.Can
xml developing - XML
xml developing  I want to develop XML document with following DTD file with XML format. I have also XSL file as a externatl file to represent my xml... creating final XML, if i make any modification to original xml (i.e. " operation
xml developing - XML
xml developing  I want to develop XML document with following DTD file with XML format. I have also XSL file as a externatl file to represent my xml... creating final XML, if i make any modification to original xml (i.e. " operation
Parsing XML using Document Builder factory - XML
Parsing XML using Document Builder factory  Hi , I am new to XML . I am trying to parse a XML file while is : For this i am using Document... org.w3c.dom import Document from org.w3c.dom import Element from
Create an Empty DOM Document
from XML Document DocumentBuilder builder = Factory.newDocumentBuilder... Create an Empty DOM Document       This Example shows how to create an empty DOM Document . JAXP
Validating XML document with a DTD
Validating XML document with a DTD If an xml document is well formed i.e.... an XML document valid it must be validated, or verified, against a DTD. DTD... as valid xml document. Validation of xml is optional. If you require the xml file
XML in database - XML
XML in database  Hi Deepak, i m again facing problem with single element multiple tag in xml. i m trying to read the tag values into my... this xml into my db(which is in mysql) i write the following code. import
DOM Example For Creating a Child Node 
DOM Example For Creating a Child Node  In this section we will discuss about how to add a Child Node in Dom document. The addition of child node is a very logical. To add a child node first we create blank DOM document and then we
xml
for providing uniquely named elements and attributes in an XML document... document, just like a DTD. An XML Schema defines user-defined integrants like elements, sub-elements and attributes needed in a xml document. It defines the data
How to create XML file - XML
How to create XML file  Creating a XML file, need an example. Thanks!!  To create XML file you need plain text editor like note pad. After creating your file save it with .xml extension.  Hi,Java programming
Remove Element from XML Document
Remove Element from XML Document     ... a given  XML document. Whenever you remove the xml element from the xml document... element from the XML document by  invoking the getParentNode() method . Here
DOM - XML
DOM  Hello.... I'm creating an xml file from java using DOM... from the database values... and saving it in a file But the created xml file...*; public class CreateXML{ public static void createXmlFile(Document doc,String
Question about parsing XML document with DOM in JAVA.
Question about parsing XML document with DOM in JAVA.  Hi, I need to parse a XML file witch has info about classes. So i have for each class to have... it with multiple for loops, one iside the other but it doesnt work. My XML is this below
XML - XML
. A user defines his own tags and XML document structure like Document Type...XML  What is specific definatio of XML? Tell us about marits and demarits of XML? use of XML? How we can use of XML?  Hi, XML
xml - XML
friend, XPath : It is a language for finding information in an XML document. It is used to navigate through elements and attributes in an XML document. It is a language for selecting nodes from an XML document. It is used
Searching an Element in the given XML Document
Searching an Element in the given XML Document  ... in the specified XML document using DOM APIs defined...; the file using the parse() method. This method parses the XML document
Creating files in jpa project
; folder and ritht click on it. Select New => XML Document... Creating files in jpa project       After creating "JPACRUDApplication" project
Hello World XML
to structure it. This tutorial explains creating xml and how to use css on it. You can use css to present xml data with styles. Creating XML: 1. Open any text... line in your xml document and save the file. <?xml-stylesheet type="text
Getting The XML Root Element
a  root element from the XML document.  The JAXP (Java APIs for XML Processing) provides a common interface for creating and using xml files using... interface.  Description of program: You need a XML document (file). Both
XML Syntax Rules
            Let's develop a simple XML document...; Always the first line in the xml document:  The XML declaration should... document contains a  E-mail To Rohan  From Amit. Don't you agree that XML
XML Well-Formed Verifier
that determines whether a  XML document is well-formed or not. Description of the program: In the following program, you will learn to parse a xml document... of parse() method. The XMLReaderFactory helps in creating an XML reader which
xml - XML
xml  hi convert xml document to xml string.i am using below code...-an-xml-document-using-jd.shtml Hope that it will be helpful for you... = stw.toString(); after i am getting xml string result, like Successxxx profile
java code to create xml document from DOM object
java code to create xml document from DOM object  Hey! After knowing the way we can create DOM objects and add elements to it-> then displaying it on the console ;is there a way I can output the same in xml document
Reading XML from a File
a DOM document. JAXP (Java API for XML Processing) is an interface which provides... for the processing of XML Documents. Here the Document BuilderFactory is used... Reading XML from a File      
XML Validate DTD
and its DTD document. First of all construct a well-formed xml file along with a DTD... creating these, we parse the xml file using the parse() method and generates... XML Validate DTD       
xml - XML
xml  hi convert xml file to xml string in java ,after getting the xml string result and how to load xml string result? this my problem pls help..."); FileOutputStream output = new FileOutputStream("new.xml"); ReadXML xml = new
DTD:Document Type Definition
of an XML document. It defines the document structure with a list of legal ...; If the DTD is defined inside the XML document, it should be wrapped in a DOCTYPE... of a XML document with an internal DTD: E-mail.xml <?xml
how to develope an xml document with existing documents's body content?
how to develope an xml document with existing documents's body content?  Hi, i'm working with content optimization system.I want to know how we can take all data from an xml doc's body to develope another xml
XML - XML
XML  Write a program using SAX that will count the number of occurrences of each element type in an XML document and display them. The document file...)); System.out.print("Enter XML file name:"); String xmlFile = bf.readLine
Open Source XML Editor
The Xerlin Project is a Java? based XML modeling application written to make creating... for developers interested in creating a UI for working with XML data files. Xerlin... is an XML editor that supports any XML document, and works with XML Schemas, DTDs
Getting Data from XML File (Document)
Getting Data from XML File (Document)   ... to the output . Here the results are displayed at the console from the XML document... from a XML file. All xml files store the data. You can add and modify the data
XML Related Technologies: An overview
(Document Type Definition) is used to define the legal elements in an XML document. XSD... documents into other XML formats, like XHTML. XML DOM (XML Document Object Model...) is a language for creating hyperlinks in XML documents. XPointer (XML Pointer
xml creation in java
xml creation in java  HI, I need a java program to create an xml file... therez a tutorial in your site to create an xml file at http://www.roseindia.net/xml/dom/CreatXMLFile.shtml but this isn't creating a file, its just
XML Tutorials
to define the structure of an XML document.   Converting... to Convert CDATA Nodes to Text Nodes in a DOM document. JAXP (Java API for XML... document. JAXP (Java API for XML Processing) is an interface which provides
JDOM CDATA Example, How to add CDATA section in xml document.
JDOM CDATA Example, How to add CDATA section in xml document. In this tutorial, we will see how to add CDATA section in xml document. In xml document...;xml ="Company.xml";   File  file=new File(xml
Storing Data (Retrieved from a XML Document) to a File
Storing Data (Retrieved from a XML Document) to a File... to store data (retrieved from the XML document) to a specified file (with ... retrieved from the xml document.  An object of Document is passed

Ask Questions?

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.