how to write in xml?

how to write in xml?

View Answers

March 17, 2009 at 2:41 AM

Hi friend,

Code to help in solving the problem :

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

public class StoreData{
static public void main(String[] arg) {
try{
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
System.out.print("Enter XML file name: ");
String xmlFile = bf.readLine();
File file = new File(xmlFile);
if (file.exists()){
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document doc = builder.parse(xmlFile);
// Create transformer
Transformer tFormer = TransformerFactory.newInstance().newTransformer();
// Output Types (text/xml/html)
tFormer.setOutputProperty(OutputKeys.METHOD, "text");
// Write the document to a file
Source source = new DOMSource(doc);
// Create File to view your xml data as vk.txt/vk.doc/vk.xls/vk.shtml/vk.html)
Result result = new StreamResult(new File("vk.txt"));
tFormer.transform(source, result);
System.out.println("File creation successfully!");
}
else{
System.out.println("File not found!");
}
}
catch (Exception e){
System.err.println(e);
System.exit(0);
}
}
}

For read more information on xml visit to :

http://www.roseindia.net/xml/dom/

Thanks









Related Tutorials/Questions & Answers:
XMLA
ModuleNotFoundError: No module named 'xmlr'
Advertisements
ModuleNotFoundError: No module named 'xmlx'
ModuleNotFoundError: No module named 'xmla'
ModuleNotFoundError: No module named 'xmla'
How to write Java Program
How to write in File in Java
How to write in File in Java
how to write code for this output?
How to write image in Jmagick
How to Write to file in Java?
how to write this program
How to write text on image
how to write in xml? - XML
How to write calculator in J2ME program?
how to write servlet program in eclipse?
how to write store procedure in sql
How to write to file using FileOutputStream
how to write java data - XML
How to Write To File BufferedWriter in Java
how to write to file at the end of the line
how to write file from FileInputStream
How to write file by line in Java
How to write method for UITableView didSelectRowAtIndexPath?
How to write a loop and a while loop
How to write first example in Ajax?
how to write append file in Java
How to write into CSV file in Java
How to write to xml file in Java?
how to write and read text for javaME
how to write this program? - Java Beginners
How to write to file using FileWriter
How to write javascripts - JSP-Servlet
how to write the program - Java Beginners
How to write a simple java applet
in string how will write the return statement..........?
How to write javascripts - JSP-Servlet
How To Write the FORM Tag Correctly for Uploading Files?
how to write a query for adding records in database
how to write a english dictionary project in java
How to Write to a File in Java
How to write a file in Java?
how to read and write an xml file using java
how to write a program to search a record using mvc2
How to write in Binary file in Java programming language
How to write a search functionality using javascript/jquery
how to read and write xml files in javascript
How to write file text In New Line
How to write jsp/servlet code to integrate LINKDIN?
how to write to file from string in Java

Ads