栏目分类:
子分类:
返回
终身学习网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
终身学习网 > IT > 前沿技术 > 人工智能 > NLP

Java&Xml教程(八)使用JDOM将Java对象转换为XML

NLP 更新时间:发布时间: 百科书网 趣学号

在前面的教程中我们学习了如何使用JDOM解析和修改XML文件内容,本节介绍如何将Java对象转换为XML数据并生成文件。

JDOM的document类提供了便捷的方法创建元素和属性,XMLOutputter 类能将document写到任何OutputStream和Writer对象中。
在本例中我们创建Employee对象集合并将它写到XML文件中。
Employee.java

package com.journaldev.xml;public class Employee {    private int id;    private String name;    private String gender;    private int age;    private String role;    public Employee(){}    public Employee(int id, String name, int age, String gender, String role){        this.id=id;        this.age=age;        this.name=name;        this.gender=gender;        this.role=role;    }    public int getId() {            return id;    }    public void setId(int id) {            this.id = id;    }    public String getName() {            return name;    }    public void setName(String name) {            this.name = name;    }    public String getGender() {            return gender;    }    public void setGender(String gender) {            this.gender = gender;    }    public int getAge() {            return age;    }    public void setAge(int age) {            this.age = age;    }    public String getRole() {            return role;    }    public void setRole(String role) {            this.role = role;    }}

我们将Employee对象id作为XML文件中Employee元素的属性,并且设置根元素Employees的命名空间为“http://www.iotsi.net/”
JDOMXMLWriter.java

package com.journaldev.xml.jdom;import java.io.FileOutputStream;import java.io.IOException;import java.util.ArrayList;import java.util.List;import org.jdom2.document;import org.jdom2.Element;import org.jdom2.Namespace;import org.jdom2.output.Format;import org.jdom2.output.XMLOutputter;import com.journaldev.xml.Employee;public class JDOMXMLWriter {    public static void main(String[] args) throws IOException {        List empList = new ArrayList<>();        empList.add(new Employee(1, "Pankaj",25,"Male","Java Developer"));        empList.add(new Employee(2, "Mona",34,"Female","Manager"));        empList.add(new Employee(3, "Dave",45,"Male","Support"));        String fileName = "employees.xml";        writeFileUsingJDOM(empList, fileName);    }    private static void writeFileUsingJDOM(List empList, String fileName) throws IOException {        document doc = new document();        doc.setRootElement(new Element("Employees",  Namespace.getNamespace("http://www.journaldev.com/employees")));        for(Employee emp : empList){            Element employee = new Element("Employee");            employee.setAttribute("id",""+emp.getId());            employee.addContent(new Element("age").setText(""+emp.getAge()));            employee.addContent(new Element("name").setText(emp.getName()));            employee.addContent(new Element("gender").setText(emp.getGender()));            employee.addContent(new Element("role").setText(emp.getRole()));            doc.getRootElement().addContent(employee);        }        //JDOM document is ready now, lets write it to file now        XMLOutputter xmlOutputter = new XMLOutputter(Format.getPrettyFormat());        //output xml to console for debugging        //xmlOutputter.output(doc, System.out);        xmlOutputter.output(doc, new FileOutputStream(fileName));    }}

运行程序将获得下面的XML文件:
employees.xml

      25    Pankaj    Male    Java Developer        34    Mona    Female    Manager        45    Dave    Male    Support  

原文地址:http://www.iotsi.net/

在前面的教程中我们学习了如何使用JDOM解析和修改XML文件内容,本节介绍如何将Java对象转换为XML数据并生成文件。
JDOM的document类提供了便捷的方法创建元素和属性,XMLOutputter 类能将document写到任何OutputStream和Writer对象中。
在本例中我们创建Employee对象集合并将它写到XML文件中。
Employee.java

package com.journaldev.xml;public class Employee {    private int id;    private String name;    private String gender;    private int age;    private String role;    public Employee(){}    public Employee(int id, String name, int age, String gender, String role){        this.id=id;        this.age=age;        this.name=name;        this.gender=gender;        this.role=role;    }    public int getId() {            return id;    }    public void setId(int id) {            this.id = id;    }    public String getName() {            return name;    }    public void setName(String name) {            this.name = name;    }    public String getGender() {            return gender;    }    public void setGender(String gender) {            this.gender = gender;    }    public int getAge() {            return age;    }    public void setAge(int age) {            this.age = age;    }    public String getRole() {            return role;    }    public void setRole(String role) {            this.role = role;    }}

我们将Employee对象id作为XML文件中Employee元素的属性,并且设置根元素Employees的命名空间为“http://www.iotsi.net/”
JDOMXMLWriter.java

package com.journaldev.xml.jdom;import java.io.FileOutputStream;import java.io.IOException;import java.util.ArrayList;import java.util.List;import org.jdom2.document;import org.jdom2.Element;import org.jdom2.Namespace;import org.jdom2.output.Format;import org.jdom2.output.XMLOutputter;import com.journaldev.xml.Employee;public class JDOMXMLWriter {    public static void main(String[] args) throws IOException {        List empList = new ArrayList<>();        empList.add(new Employee(1, "Pankaj",25,"Male","Java Developer"));        empList.add(new Employee(2, "Mona",34,"Female","Manager"));        empList.add(new Employee(3, "Dave",45,"Male","Support"));        String fileName = "employees.xml";        writeFileUsingJDOM(empList, fileName);    }    private static void writeFileUsingJDOM(List empList, String fileName) throws IOException {        document doc = new document();        doc.setRootElement(new Element("Employees",  Namespace.getNamespace("http://www.journaldev.com/employees")));        for(Employee emp : empList){            Element employee = new Element("Employee");            employee.setAttribute("id",""+emp.getId());            employee.addContent(new Element("age").setText(""+emp.getAge()));            employee.addContent(new Element("name").setText(emp.getName()));            employee.addContent(new Element("gender").setText(emp.getGender()));            employee.addContent(new Element("role").setText(emp.getRole()));            doc.getRootElement().addContent(employee);        }        //JDOM document is ready now, lets write it to file now        XMLOutputter xmlOutputter = new XMLOutputter(Format.getPrettyFormat());        //output xml to console for debugging        //xmlOutputter.output(doc, System.out);        xmlOutputter.output(doc, new FileOutputStream(fileName));    }}

运行程序将获得下面的XML文件:
employees.xml

      25    Pankaj    Male    Java Developer        34    Mona    Female    Manager        45    Dave    Male    Support  

以上就是Java&Xml教程(八)使用JDOM将Java对象转换为XML的内容,更多相关内容请关注PHP中文网(www.iotsi.net)!

转载请注明:文章转载自 www.051e.com
本文地址:http://www.051e.com/it/794817.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 ©2023-2025 051e.com

ICP备案号:京ICP备12030808号