August 6, 2008 at 4:15 PM
Hi friend,
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 CreateXmlFile {
public static void main(String[] args) throws Exception {
BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
System.out.print("Enter number to add elements in your XML file: ");
String str = buff.readLine();
int no = Integer.parseInt(str);
System.out.print("Enter root: ");
String root = buff.readLine();
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder documentBuilder = dbf.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 = buff.readLine();
System.out.print("Enter the data: ");
String data = buff.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);
}
}
--------------------------------------------------------------------------
Read for more information.
http://www.roseindia.net/xml/dom/Thanks.
Related Tutorials/Questions & Answers:
Create XMl dynamically - XMLCreate XMl dynamically Hi
I am retreiving the list from database which i need to display in an
XML file with some nodes
How can I do
Create XML - XMLCreate XML
Hi,
Can you please provide java code,that will
create xxx.XML file where all the attributes and values of those attributes... elements in your
XML file: ");
String str = buff.readLine();
int
Advertisements
How to create XML file - XMLHow 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... language has many API's to
create xml file from program.Here is the code example
how to create a xml pagehow to
create a
xml page <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xml:lang="en" lang="en">
<
create a xml from sql server 2005 - XMLcreate a
xml from sql server 2005 hello Dear,
i want to know how we
create a
xml file which retrieve data from Sql server 2005 using java.
i... with the name as 'student'
i want to
create a
xml file from the table values which
How to create XML from SwingsHow to
create XML from Swings How to
create XML using Swings. I have a Swing GUI and capturing all data from it.When i click on submit, an
xml... components and display it in
xml file.
import java.io.*;
import java.util.*;
import
Create - XML File (Document) Create -
XML File (Document)
In this section, you will learn to
create a
XML
document...;How to
create XML in Java?":
ADS_TO_REPLACE_2
Here is Java File
how to create xml schema from xml doc using javahow to
create xml schema from
xml doc using java i want to
create xml schema from
xml document programatically using java... am using Netbeans IDE... need to
create the
xml schema for that document and send both
xml doc ans schema
create the SQL tables from an XML schemacreate the SQL tables from an
XML schema I'm using Eclipse,
Please let me know if anyone developped an application that would automatically
create the SQL tables from an
XML schema
Java Swing Create XML fileJava Swing
Create XML file
In this tutorial, you will learn how to
create XML... and fetch all the data from
textfields and
create an
xml file with proper... swing components and display
it in
xml file. We have created textfields
Create XML File using Servlet Create XML File using Servlet
In this section, you will learn how to
create xml...
XML file with its version and encoding and display a message '
Xml
File Created
java code to create xml document from DOM objectjava 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
What is XML? and
create well formatted
XML
document.
What is
XML Document?
Some facts about
XML...What is
XML?
In the first section of
XML tutorials we will learn the basics of
XML and
then write our first
xml document. After completing this section
XMLXML
create flat file with 20 records. Read the records using
xml parser and show required details
XML Parsers
XML Parsers
XML parser is used to read, update,
create and manipulate
an
XML document.
Parsing
XML Documents
To manipulate an
XML document,
XML parser is needed.
The parser
createcreate how to
create an excel file using java
XMLXML Design an
XML to maintain book details to do the following:
(i) Separate Data
(ii) Exchange Data
(iii) Store Data
(iv)
Create new language
xmlxml Design an
XML to maintain book details to do the following:
(i) Separate Data
(ii) Exchange Data
(iii) Store Data
(iv)
Create new language
JAXB Create XML File And Get Data From XMLJAXB
Create XML File And Get Data From
XML
In this section we will read about how to
create XML file and how to convert
XML file's data to Java Object... again. In
this example at first we will
create Java Classes to
create an
XML XMLXML How i remove a tag from
xml and update it in my
xml xmlxml why the content written in
xml is more secure
xml xml validate student login using
xml for library management system
xml xml validate student login using
xml for library management system
xmlxml what is name space,
xml scema give an example for each
XML Namespaces provide a method to avoid element name conflicts.They are used for providing uniquely named elements and attributes in an
XML document
XMLXML please tell me how i remove one tag out of all similar type of tags in
xml xmlxml how can i remove white space and next line when i copy stream to
xml file
xmlxml what is
xml
Extensible Markup Language (
XML... that is both human-readable and machine-readable. It is defined in the
XML 1.0... gratis open standards.
The design goals of
XML emphasize simplicity, generality
XMLXML Hi......
Please tel me about that
Aren't
XML, SGML, and HTML all the same thing?ADS_TO_REPLACE_1
Thanks
XML and JavaScriptJavaScript and
XML
In this section we will see how JavaScript and
XML... libraries to fetch the server data. Developer can use
these
XML data or JSON data retrieved from the server.
Here
XML plays important role data transfer
XML - XMLXML 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... language much like HTML used to describe data. In
XML, tags are not predefined
XML - XMLXML XSD validation in java Can anyone help in writing validation for
XML XSD in Java
Introduction to XML Schema
Introduction to
XML Schema
In this tutorial you will learn how to read and
create
XML Schemas, why
XML Schemas are more powerful than DTDs, and how to use them in
your
Creating XMl file - XMLCreating
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
Java get XML File the
XML file.
For this, you need to
create a
XML file.
Here is the employee.xml file:ADS_TO_REPLACE_1
<?
xml version="1.0"?>
<... Java get
XML File
Hello World XML
.style1 {
background-color: #BFDFFF;
}
Hello World
XML
To begin working with
XML, you need to learn how to
create xml file and how... to
create xml file and view it in browers.
Using CSS in
XML:
6. Now you
XML - XMLXML How to run
XML program? Hi Friend,
Please visit the following links:
http://www.roseindia.net/
xml/
http://www.roseindia.net/
xml/dom/
Hope that it will be helpful for you.
Thanks
Java Generate XML ExampleJava Generate
XML Example
To
Create a
XML in Java using Dom follow the Steps...
rootElement.appendChild(ChildElement);
7.
Create the output formate
// Creating
XML output... = dbFactory.newDocumentBuilder();
3.
Create a document object from documentBuilder
//
Create XML - XMLXML How to convert database to
XML file?
Hi Friend,
Do you want to store database data into
xml file ?
Please clarify this.
Thanks
xml - XMLxml how to match to
xml file?can you give example with java code
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
xml - XMLxml define parser and
xml,in jaxp api how to up load parsers... then the program
contains syntax errors.
XML is defined as an extensible... information,Examples and Tutorials on
Xml visit to :
http
xml - XMLxml hi
convert
xml document to
xml string.i am using below code... = stw.toString();
after i am getting
xml string result, like
Successxxx profile... Friend,
Please visit the following link:
http://www.roseindia.net/
xml/reading
xml - XMLxml 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
XML and VelocityXML and Velocity How to
create xml file using velocity template engine