A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 liqiong0327 于 2012-10-23 23:35 编辑

复制代码
放在了循环外面,还有JAR包导入也出错了,把jar包重新导入了,可以了,但是这个代码我不知道它的意思可以详细的加注释解说一下吗?

评分

参与人数 1技术分 +1 收起 理由
唐志兵 + 1 你这编码乱的别人怎么帮你解答.

查看全部评分

2 个回复

倒序浏览
咋成这样了啊?

package com.accp.xml;
import nu.xom.*;
import java.io.BufferedOutputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.util.*;
public class Person {
private String first, last;
public Person(String first, String last) {
  this.first = first;
  this.last = last;
}
public Element getXML() {
  Element person = new Element("person");
  Element firstName = new Element("first");
  firstName.appendChild(first);
  Element lastName = new Element("last");
  lastName.appendChild(last);
  person.appendChild(firstName);
  person.appendChild(lastName);
  return person;
}
public Person(Element person) {
  first = person.getFirstChildElement("first").getValue();
  last = person.getFirstChildElement("last").getValue();
}
public String toString() {
  return first + " " + last;
}
public static void format(OutputStream os, Document doc) {
  try {
   Serializer serializer = new Serializer(os, "ISO-8859-1");
   serializer.setIndent(4);
   serializer.setMaxLength(60);
   serializer.write(doc);
   serializer.flush();
  } catch (UnsupportedEncodingException e) {
   
   e.printStackTrace();
  } catch (IOException e) {
  
   e.printStackTrace();
  }
}
public static void main(String[] args){
  List<Person> people=Arrays.asList(
    new Person("Dr. Bunsen", "Honeydew"),
    new Person("Gonzo", "The Great"),
    new Person("Phillip j.", "Fry"));
  System.out.println(people);
  Element root=new Element("person");
  for(Person p : people){
   System.out.println(p+" 对象");
   root.appendChild(p.getXML());
   Document doc=new Document(root);
   
   format(System.out, doc);
   try {
    format(new BufferedOutputStream(new FileOutputStream("People.xml")),doc);
   } catch (FileNotFoundException e) {
   
    e.printStackTrace();
   }
  }
}
}
这个是要读的XML文档

<?xml version="1.0" encoding="UTF-8"?>
<people>
   <person>
      <first>Dr. Bunsen</first>
      <last>Honeydew</last>
    </person>
    <person>
      <first>Gonzo</first>
      <last>The Great</last>
    </person>
    <person>
      <first>Phillip j.</first>
      <last>Fry</last>
    </person>
</people>

放在了循环外面,还有JAR包导入也出错了,把jar包重新导入了,可以了,但是这个代码我不知道它的意思可以详细的加注释解说一下吗?

评分

参与人数 1技术分 +1 收起 理由
唐志兵 + 1 赞一个!

查看全部评分

回复 使用道具 举报
果然 牛 啊     不懂中。。。。。。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马