导出到 XML,包括嵌入式类

问题描述 投票:0回答:2

我有一个对象 config 它有一些属性。我可以导出它,但是,它还有一个 ArrayList,它与嵌入类相关,当我导出到 XML 时,我无法显示这些类。任何指针都会有所帮助。

导出方式

public String exportXML(config conf, String path) {
    String success = "";
    try {
        FileOutputStream fstream = new FileOutputStream(path);
        try {
            XMLEncoder ostream = new XMLEncoder(fstream);
            try {
                ostream.writeObject(conf);
                ostream.flush();
            } finally {
                ostream.close();
            }
        } finally {
            fstream.close();
        }
    } catch (Exception ex) {
        success = ex.getLocalizedMessage();
    }
    return success;
}

Config Class (删除一些细节以减小尺寸)

public class config {

protected String author = "";
protected String website = "";
private ArrayList questions = new ArrayList();

public config(){
}

public void addQuestion(String name) {
    questions.add(new question(questions.size(), name));
}

public void removeQuestion(int id) {
    questions.remove(id);
    for (int c = 0; c <= questions.size(); c++) {
        question q = (question) (questions.get(id));
        q.setId(c);
    }
    questions.trimToSize();
}

public config.question getQuestion(int id){
    return (question)questions.get(id);
}


/**
 * There can be multiple questions per config.
 * Questions store all the information regarding what questions are
 * asked of the user, including images, descriptions, and answers.
 */
public class question {

    protected int id;
    protected String title;
    protected ArrayList answers;

    public question(int id, String title) {
        this.id = id;
        this.title = title;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public void addAnswer(String name) {
        answers.add(new answer(answers.size(), name));
    }

    public void removeAnswer(int id) {
        answers.remove(id);
        for (int c = 0; c <= answers.size(); c++) {
            answer a = (answer) (answers.get(id));
            a.setId(c);
        }
        answers.trimToSize();
    }

    public config.question.answer getAnswer(int id){
        return (answer)answers.get(id);
    }

    public class answer {

        protected int id;
        protected String title;

        public answer(int id, String title) {
            this.id = id;
            this.title = title;
        }

        public int getId() {
            return id;
        }

        public void setId(int id) {
            this.id = id;
        }
    }
}

}

结果 XML 文件

<?xml version="1.0" encoding="UTF-8"?> 
<java version="1.6.0_18" class="java.beans.XMLDecoder"> 
 <object class="libConfig.config"> 
  <void property="appName"> 
   <string>xxx</string> 
  </void> 
  <void property="author"> 
   <string>Andy</string> 
  </void> 
  <void property="website"> 
   <string>www.example.com/dsx.xml</string> 
  </void> 
 </object> 
</java> 
java xml xml-serialization
2个回答
2
投票

Xstream 从他们的描述中可以更好地处理这个问题:

  • 不需要修改对象。
  • 序列化内部字段,包括私有字段和最终字段。
  • 支持非公共类和内部类。
  • 类不需要有默认构造函数。

0
投票

XMLEncoder 适用于公共 getter 和 setter:http://www.exampledepot.com/egs/java.beans/WriteXml.html

我想知道,为什么文件中还有其他属性(如作者)(?)尝试添加公共

getQuestions()
setQuestions()
方法。

© www.soinside.com 2019 - 2024. All rights reserved.