🎓 Top 15 Udemy Courses (80-90% Discount): My Udemy Courses - Ramesh Fadatare — All my Udemy courses are real-time and project oriented courses.
▶️ Subscribe to My YouTube Channel (178K+ subscribers): Java Guides on YouTube
▶️ For AI, ChatGPT, Web, Tech, and Generative AI, subscribe to another channel: Ramesh Fadatare on YouTube
In the previous articles, we have learned How to read XML file in Java using JDOM parser and How to Update or Modify XML file in Java – JDOM Parser. In this article, we will learn how to create an XML file using JDOM parser in Java.
JDOM Document provides methods to easily create elements and attributes. XMLOutputter class can be used to write the Document to an OutputStream or Writer object.
For this example, we will create a list of the User element and then write it to an XML file.
Development Process Steps
- The output create_jdom_users.xml File
- Program to create XML file in Java using JDOM Parser.
1. The output create_jdom_users.xml File
At the end of this example, following XML file will be created.
<?xml version="1.0" encoding="UTF-8"?>
<Users>
<User id="1">
<firstName>Ramesh</firstName>
<lastName>Fadatare</lastName>
<age>28</age>
<gender>Male</gender>
</User>
<User id="2">
<firstName>Tom</firstName>
<lastName>Cruise</lastName>
<age>45</age>
<gender>Male</gender>
</User>
<User id="3">
<firstName>Tony</firstName>
<lastName>Stark</lastName>
<age>40</age>
<gender>Male</gender>
</User>
<User id="3">
<firstName>Amir</firstName>
<lastName>Khan</lastName>
<age>50</age>
<gender>Male</gender>
</User>
</Users>
2. Program to create XML file in Java using JDOM Parser
Let's develop a program to create XML file in Java using JDOM Parser.
package net.javaguides.javaxmlparser.jdom;
import java.io.FileWriter;
import java.io.IOException;
import org.jdom2.Attribute;
import org.jdom2.Document;
import org.jdom2.Element;
import org.jdom2.output.Format;
import org.jdom2.output.XMLOutputter;
public class CreateXMLFile {
public static void main(String[] args) {
try {
Document doc = new Document();
doc.setRootElement(new Element("Users"));
doc.getRootElement().addContent(createUserXMLElement("1", "Ramesh", "Fadatare", "28", "Male"));
doc.getRootElement().addContent(createUserXMLElement("2", "Tom", "Cruise", "45", "Male"));
doc.getRootElement().addContent(createUserXMLElement("3", "Tony", "Stark", "40", "Male"));
doc.getRootElement().addContent(createUserXMLElement("3", "Amir", "Khan", "50", "Male"));
// new XMLOutputter().output(doc, System.out);
XMLOutputter xmlOutput = new XMLOutputter();
// xmlOutput.output(doc, System.out);
// display nice nice
xmlOutput.setFormat(Format.getPrettyFormat());
xmlOutput.output(doc, new FileWriter("create_jdom_users.xml"));
System.out.println("File Saved!");
} catch (IOException io) {
System.out.println(io.getMessage());
}
}
private static Element createUserXMLElement(String id, String firstName, String lastName, String age,
String gender) {
Element user = new Element("User");
user.setAttribute(new Attribute("id", id));
user.addContent(new Element("firstName").setText(firstName));
user.addContent(new Element("lastName").setText(lastName));
user.addContent(new Element("age").setText(age));
user.addContent(new Element("gender").setText(gender));
return user;
}
}
My Top and Bestseller Udemy Courses. The sale is going on with a 70 - 80% discount. The discount coupon has been added to each course below:
Build REST APIs with Spring Boot 4, Spring Security 7, and JWT
🆕 High-Demand
80–90% OFF
[NEW] Learn Apache Maven with IntelliJ IDEA and Java 25
🆕 High-Demand
80–90% OFF
ChatGPT + Generative AI + Prompt Engineering for Beginners
🚀 Trending Now
80–90% OFF
Spring 7 and Spring Boot 4 for Beginners (Includes 8 Projects)
🔥 Bestseller
80–90% OFF
Available in Udemy for Business
Available in Udemy for Business
Building Real-Time REST APIs with Spring Boot - Blog App
🔥 Bestseller
80–90% OFF
Available in Udemy for Business
Available in Udemy for Business
Building Microservices with Spring Boot and Spring Cloud
🌟 Top Rated
80–90% OFF
Available in Udemy for Business
Available in Udemy for Business
Java Full-Stack Developer Course with Spring Boot and React JS
🔥 Bestseller
80–90% OFF
Available in Udemy for Business
Available in Udemy for Business
Build 5 Spring Boot Projects with Java: Line-by-Line Coding
🌟 Top Rated
80–90% OFF
Testing Spring Boot Application with JUnit and Mockito
🔥 Bestseller
80–90% OFF
Available in Udemy for Business
Available in Udemy for Business
Spring Boot Thymeleaf Real-Time Web Application - Blog App
🔥 Bestseller
80–90% OFF
Available in Udemy for Business
Available in Udemy for Business
Master Spring Data JPA with Hibernate
🔥 Bestseller
80–90% OFF
Available in Udemy for Business
Available in Udemy for Business
Spring Boot + Apache Kafka Course - The Practical Guide
🎓 Student Favorite
80–90% OFF
Available in Udemy for Business
Available in Udemy for Business

Comments
Post a Comment
Leave Comment