xml与java

input.xml文件

<?xml version="1.0" encoding="GB2312"?>
<学生花名册>
<学生 性别 = "男">
<姓名>李华</姓名> 
<年龄>14</年龄>
<电话>6287555</电话>
</学生>
<学生 性别 = "男">
<姓名>张三</姓名>
<年龄>16</年龄>
<电话>8273425</电话>
</学生>
</学生花名册>

StudentBean .java

package xmlTest;

/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2005</p>
 * <p>Company: </p>
 * @author not attributable
 * @version 1.0
 */

public class StudentBean {
  private String sex;
  private String name;
  private int age;
  private String phone;
  public StudentBean() {
  }
  public String getSex() {
    return sex;
  }
  public void setSex(String sex) {
    this.sex = sex;
  }
  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }
  public int getAge() {
    return age;
  }
  public void setAge(int age) {
    this.age = age;
  }
  public String getPhone() {
    return phone;
  }
  public void setPhone(String phone) {
    this.phone = phone;
  }

}

XMLTest.java

package xmlTest;

import java.io.*;
//Java基础包,包含各种IO操作
import java.util.*;
//Java基础包,包含各种标准数据结构操作
import javax.xml.parsers.*;
//XML解析器接口
import org.w3c.dom.*;
//XML的DOM实现
import org.apache.crimson.tree.XmlDocument;
//写XML文件要用到


/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2005</p>
 * <p>Company: </p>
 * @author not attributable
 * @version 1.0
 */

public class XMLTest {
  public XMLTest() {
  }
  private Vector student_Vector;
  //读取xml文件
  private void readXMLFile(String inFile) throws Exception {
  //为解析XML作准备,
  //创建DocumentBuilderFactory实例,指定DocumentBuilder
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = null;
    try {
      db = dbf.newDocumentBuilder();
    }
    catch (ParserConfigurationException pce) {//出异常时输出异常信息,然后退出,下同
      System.err.println(pce);
      System.exit(1);
    }
    Document doc = null;
    try {
      doc = db.parse(inFile);
    }
    catch (DOMException dom) {
      System.err.println(dom.getMessage());
      System.exit(1);
    }
    catch (IOException ioe) {
      System.err.println(ioe);
      System.exit(1);
    }
//下面是解析XML的全过程,
//比较简单,先取根元素"学生花名册"
    Element root = doc.getDocumentElement();
//取"学生"元素列表
    NodeList students = root.getElementsByTagName("学生");
    for (int i = 0; i < students.getLength(); i++) {
//依次取每个"学生"元素
      Element student = (Element) students.item(i);
//创建一个学生的Bean实例
      StudentBean studentBean = new StudentBean();
//取学生的性别属性
      studentBean.setSex(student.getAttribute("性别"));
//取"姓名"元素,下面类同
      NodeList names = student.getElementsByTagName("姓名");
      if (names.getLength() == 1) {
        Element e = (Element) names.item(0);
        Text t = (Text) e.getFirstChild();
        studentBean.setName(t.getNodeValue());
      }

      NodeList ages = student.getElementsByTagName("年龄");
      if (ages.getLength() == 1) {
        Element e = (Element) ages.item(0);
        Text t = (Text) e.getFirstChild();
        studentBean.setAge(Integer.parseInt(t.getNodeValue()));
      }

      NodeList phones = student.getElementsByTagName("电话");
      if (phones.getLength() == 1) {
        Element e = (Element) phones.item(0);
        Text t = (Text) e.getFirstChild();
        studentBean.setPhone(t.getNodeValue());
      }

      student_Vector.add(studentBean);
    }
  }
//写xml文件
  private void writeXMLFile(String outFile) throws Exception {
//为解析XML作准备,
//创建DocumentBuilderFactory实例,指定DocumentBuilder
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = null;
    try {
      db = dbf.newDocumentBuilder();
    }
    catch (ParserConfigurationException pce) {
      System.err.println(pce);
      System.exit(1);
    }

    Document doc = null;
    doc = db.newDocument();

//下面是建立XML文档内容的过程,
//先建立根元素"学生花名册"
    Element root = doc.createElement("学生花名册");
//根元素添加上文档
    doc.appendChild(root);

//取学生信息的Bean列表
    for (int i = 0; i < student_Vector.size(); i++) {
//依次取每个学生的信息
      StudentBean studentBean = (StudentBean) student_Vector.get(i);
//建立"学生"元素,添加到根元素
      Element student = doc.createElement("学生");
      student.setAttribute("性别", studentBean.getSex());
      root.appendChild(student);
//建立"姓名"元素,添加到学生下面,下同
      Element name = doc.createElement("姓名");
      student.appendChild(name);
      Text tName = doc.createTextNode(studentBean.getName());
      name.appendChild(tName);

      Element age = doc.createElement("年龄");
      student.appendChild(age);
      Text tAge = doc.createTextNode(String.valueOf(studentBean.getAge()));
      age.appendChild(tAge);

      Element phone = doc.createElement("电话");
      student.appendChild(phone);
      Text tPhone = doc.createTextNode(studentBean.getPhone());
      phone.appendChild(tPhone);
    }
//把XML文档输出到指定的文件
    FileOutputStream outStream = new FileOutputStream(outFile);
    OutputStreamWriter outWriter = new OutputStreamWriter(outStream);
    ( (XmlDocument) doc).write(outWriter, "GB2312");
    outWriter.close();
    outStream.close();
  }

private void writeHTMLFile(String outFile) throws Exception {
     StringBuffer HTMLString=new StringBuffer();
     HTMLString.append("<html>/n<head>/n<title>学生花名册</title>/n<meta http-equiv=/"Content-Type/" content=/"text/html; charset=gb2312/">/n</head>/n<body>/n");
     if(student_Vector.size()>0){
       HTMLString.append("<table width=100% border=1 cellpadding=5 cellspacing=0>/n");
       HTMLString.append("/t<th colspan=4>学生花名册</th>/n");
       HTMLString.append("/t<tr align=center>/n");
       HTMLString.append("/t/t<td>姓名</td>/n");
       HTMLString.append("/t/t<td>性别</td>/n");
       HTMLString.append("/t/t<td>年龄</td>/n");
       HTMLString.append("/t/t<td>电话</td>/n");
       HTMLString.append("/t</tr>/n");
       for (int i = 0; i < student_Vector.size(); i++) {
         StudentBean studentBean = (StudentBean) student_Vector.get(i);
         HTMLString.append("/t<tr align=center>/n");
         HTMLString.append("/t/t<td>"+studentBean.getName()+"</td>/n");
         HTMLString.append("/t/t<td>"+studentBean.getSex()+"</td>/n");
         HTMLString.append("/t/t<td>"+studentBean.getAge()+"</td>/n");
         HTMLString.append("/t/t<td>"+studentBean.getPhone()+"</td>/n");
         HTMLString.append("/t</tr>/n");
       }
       HTMLString.append("</table>");
     }
     HTMLString.append("/n</body>/n</html>");
     FileOutputStream outStream = new FileOutputStream(outFile);
    OutputStreamWriter outWriter = new OutputStreamWriter(outStream);
    outWriter.write(HTMLString.toString());
    outWriter.close();
    outStream.close();

  }
//最后加入测试主函数,如下:
  public static void main(String[] args) throws Exception {
//建立测试实例
    XMLTest xmlTest = new XMLTest();
//初始化向量列表
    xmlTest.student_Vector = new Vector();

    System.out.println("开始读Input.xml文件");
    xmlTest.readXMLFile("file/xml/Input.xml");
    System.out.println("读入完毕");
    //System.out.println("开始写Output.xml文件");
    //xmlTest.writeXMLFile("file/xml/Output.xml");
    System.out.println("开始写Output.htm文件");
    xmlTest.writeHTMLFile("file/xml/Output.htm");
    System.out.println("写入完成");
  }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值