DOM 1 Answer(s) 3 years and a month ago
Posted in : XML
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 is generating all its files in a single line.. But i need to get the next tag in next line how to get this..??
public class CreateXML{ public static void createXmlFile(Document doc,String name,String address,String contactNo,String email) throws Exception { Element root = doc.createElement("Employee"); doc.appendChild(root); Element element1 = doc.createElement("Emp_Name"); root.appendChild(element1); Text text1 = doc.createTextNode(name); element1.appendChild(text1);
Element element2 = doc.createElement("Emp_Address"); root.appendChild(element2); Text text2 = doc.createTextNode(address); element2.appendChild(text2);
Element element3 = doc.createElement("Emp_ContactNo"); root.appendChild(element3); Text text3 = doc.createTextNode(contactNo); element3.appendChild(text3);
Element element4 = doc.createElement("Email"); root.appendChild(element4); Text text4 = doc.createTextNode(email); element4.appendChild(text4);
StringWriter sw = new StringWriter(); StreamResult result = new StreamResult(sw); DOMSource source = new DOMSource(doc); transformer.transform(source, result); String xmlString = sw.toString();
File file = new File("c:/employee.xml"); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file))); bw.write(xmlString); //bw.flush(); bw.close(); } public static void main(String args[])throws Exception{ DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance(); DocumentBuilder docBuilder = builderFactory.newDocumentBuilder(); Document doc = docBuilder.newDocument(); Class.forName("com.mysql.jdbc.Driver").newInstance(); Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","root"); Statement st=con.createStatement(); ResultSet rs= st.executeQuery("select * from employee where id='1'"); if(rs.next()){ createXmlFile(doc,rs.getString("name"),rs.getString("address"),rs.getString("contactNo"),rs.getString("email")); } System.out.println("Xml File Created Successfully"); } }
Thanks
Related Pages:
DOM
DOM hello,
What is DOM?
hii,
DOM is stands for Document object Model.
DOM is an interface-oriented Application Programming Interface. We can use it for navigation of the entire document
DOM
DOM package name for Document class?
Hi Friend,
The package is known as dom api.
For more information, visit the following links:
http://www.roseindia.net/xml/
http://www.roseindia.net/xml/dom/
Thanks
DOM - XML
DOM Hi...
I created an xml file through java by using DOM
Now..I need to get the prompt for download when i clicked the button...
I used downloadaction...for this
But it didn't worked..
Its jus viewing the xml file
Dom in java Dom in java Exception in thread "main" org.w3c.dom.DOMException: INVALIDCHARACTERERR: An invalid or illegal XML character is specified... Create XML using DOM
import java.io.*;
import org.w3c.dom.*;
import
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 is generating all its files in a single line..
But i need to get the next tag
Javascript DOM
generate a fixture list. I was knocking about using DOM techniques but with minimal
dom to xml string dom to xml string Hi,
I am writing a program in java that reads... have save the dom document into xml file. How to convert dom to xml string... for converting DOM object into string data.
Please check the thread dom to xml
Java dom from string
Java dom from string Hi,
How to create dom tree from string data? I am trying to search the example for java dom from string.
Thanks
Hi,
Following code might be useful:
import java.io.StringReader;
import
Java-XML-DOM - XML
Java-XML-DOM Hi! I need some help. I have to make java program that loads an xml file and from it builds DOM(later i will have to work with it - like using xpath in java find some value and replace it...). Since i'm new to java
DOM API - Java Beginners DOM API How can i go through each and every node of an xml file Each and everyChild?
my xml file is given below:
810
32
141
22
DOM paring problem DOM paring problem Hi My code always show arrayindexoutofbound
here is my code i am using arraylist to display and DOM parser to retrieve
XML value. I am searching the value by attributes equals 2.
this error i am getting
DOM paring problem DOM paring problem Hi My code always show arrayindexoutofbound
here is my code i am using arraylist to display and DOM parser to retrieve
XML value. I am searching the value by attributes equals 2.
this error i am getting
DOM API - Java Beginners DOM API How can i go through each and every node of an xml file Each and everyChild?
my xml file is given below...);
}
}
}
----------------------------------------------
Read for more information.
http://www.roseindia.net/xml/dom
Inserting content(DOM Insertion)
Inserting content(DOM Insertion)
Inserting content(DOM Insertion)
Inserting Dom contents to html ,can be categories in the following 4
categories
DOM Parser Tutorial DOM Parser Tutorial
Introduction
Dom stands for Document Object Model.... It is
available in package org.w3c.dom.
Dom is a cross-language API. It provides many... tree
elements. With the help of Dom api, user can add, delete
Create an Empty DOM Document
Create an Empty DOM Document
This Example shows how to create an empty DOM Document
. JAXP... documents. Here the Document BuilderFactory is used to create new DOM
parsers
XML DOM Tutorial
XML DOM Tutorial
W3C provides a standard called DOM (Document Object Model) for HTML & XML
documents. DOM is also used as an interface for accessing and manipulating HTML
& XML
XML DOM error - Java Beginners
XML DOM error import org.w3c.dom.*;
import javax.xml.parsers.*;
import java.io.*;
public class DOMCountElement{
public static void main(String[] args) {
try {
BufferedReader bf = new BufferedReader(new
Creating DOM Child Elements
Creating DOM Child Elements
This lesson shows you how to create root and child
elements in the DOM tree. We will first create a blank DOM document and add the
root element
Java DOM Tutorial
Java DOM Tutorial
This tutorial is complete guide
to DOM processing.
What is DOM?
Document Object Model: DOM is a platform- and language-neutral interface,
that provides a standard
Document Object Model(DOM)
Document Object Model(DOM)
The Document Object Model (DOM)
is a an standard object model... to use DOM in order to
render an HTML document. However, JavaScript scripts
The Document Object Model (DOM) APIs
The Document Object Model (DOM) APIs
The DOM Packages
 ...
org.w3c.dom
This package defines the DOM programming
Adding an Attribute in DOM Document
Adding an Attribute in DOM Document
This Example shows you how to adds an attribute in a
DOM...
DOM parsers. There are some of the methods used in code given below for adding
Pass a dom object from jsp to servlet
Pass a dom object from jsp to servlet I am creating a dom object in my jsp page.
now i want to pass that object in a servlet through calling servlet in jsp.
can anyone help me
Creates a New DOM Parse Tree
Creates a New DOM Parse Tree
This Example describes a method to create a new DOM
tree .Methods which are used for making a new DOM parse tree are described below
:-
Element
Example for getElementsByTagName() method in DOM Document.
Example for getElementsByTagName()
in DOM Document
In this section ,we will discuss the implementation of the getElementsByTagName(),
getLength(), getFirstChild() methods as follows.
In this Example, we find the value of first siblings
Implementing the createTextNode() method in DOM API.
Implementing the createTextNode() method in DOM API
In this illustration, we... new DOM parsers and DocumentBuilder is
used in code given below for creating an Blank DOM Document.
The following code is used to create a textNode.
Text
Read Complex XML using DOM/SAX Parser.
Read Complex XML using DOM/SAX Parser. I have a XML file which is having two types of Items. I want to extract all details of a type only. My XML goes something like this
<Movie>
<Bollywood>
<Actor>
Shah Rukh
Creating Blank DOM Document
Creating Blank DOM Document
This tutorial shows you how to create blank DOM
document. JAXP (Java...
for creating new DOM parsers. Normally it is used to a DOM parser. Example
Example of getDocType method in DOM API.
getDocType() Example in DOM API
In this section, we will discuss about the implementation of the getDocType()
method. This
method checks that DTD(Document... parse the xml file using parse()
method and create a DOM Tree. Invoke the object
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 its methods and for each method to get its parameters. I'm trying to do
Implementing the setAttribute() method of DOM API
Implementing the setAttribute() method of DOM API
In this illustration, we will discuss about the appending the node to the
existing XML document.
In this program, we create the object of DocumentBuilderFactory to
parse the xml
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
XML Error checker and locater (DOM)
XML Error checker and locater (DOM)
 ... and locate
(line and column number) an error in your XML document using the DOM
APIs... are needed to get a dom parser. All
the parsers have inbuilt capability
Getting Dom Tree Elements and their Corresponding XML Fragments
Getting Dom Tree Elements and their Corresponding XML Fragments... will learn to get the
elements of a DOM tree and their corresponding XML
fragments. Each element of dom tree has a node level starting with '0'. Here
Java Write To File Dom Document
Java Write To File Dom Document
In this tutorial you will learn how to write to file dom document.
Write to xml file you would be required to use the package javax.xml. This
package provides the facility to create XML file easily
Parsing The XML File using DOM parser in JSP
Parsing The XML File using DOM parser in JSP... the DOM (Document
Object Model) parser, that is the platform independent...
the processing are displayed on to the present page. DOM parser is not an
ideal
DOM Parser Example to Parse A DOM Document DOM Parser Example to Parse A DOM Document
In this tutorial, we will discuss about how to parse(retrieve data) DOM
Document.
The XML DOM views an XML... to create a DOM object.Get a list of
Employee elements from the DOM and count
JAXP API using DOM Parser
JAXP API using
DOM Parser
 ... based on the structure type.
DOM
(Document Object Model)
The XML Document Object Model (XML DOM) defines a standard way to
access
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
Modifying Text by Replacement
;
This Example describes a method to modify the Text in a
DOM document . Some of the methods which are used to modify text in the DOM
Document...
access to the root of the DOM Document.
Node node = root.getFirstChild