java 导出到XML,包括嵌入类

kmbjn2e3  于 2023-03-16  发布在  Java
关注(0)|答案(3)|浏览(144)

我有一个对象 config,它有一些属性。我可以导出这个,但是,它也有一个数组列表,它与嵌入式类相关,当我导出到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;
}

配置类*(删除一些细节以缩小规模)*

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>
57hvy0tb

57hvy0tb1#

Xstream处理这一点要好得多,从他们的描述来看:

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

cclgggtu2#

Jackson是一个有能力的库,最初是JSON库/解析器,但现在支持XML以及Smile(Java) PropertiesYAML、CSV、CBOR、TOML、Avro、Protobuf等。
对于XML,可以像这样使用它:

/**
 * A method to write all the questions in xml format to a file.
 * @return                 a boolean;
 *                         true if successful,
 *                         false if not successful
 */
private static boolean writeQuestionsToXml() {
    XmlMapper xmlMapper = new XmlMapper();
    String absolutePath = getQuestionsAbsolutePath();

    try {
        xmlMapper.writeValue(new File(absolutePath), questions);
//        System.out.println(new XMLMapper().writeValueAsString(questions));
        return true;
    } catch (IOException e) {
        e.printStackTrace();
    }
    return false;
}

/**
 * A method to get the absolute path to the questions file.
 * E.g.: "D:\Project\questions.xml"
 * @return                 a string with the absolute path to the questions file
 */
private static String getQuestionsAbsolutePath () {
    return "" + System.getProperty("user.dir") + "\\" + "questions.xml"
}

一些有用的链接:
How to Marshal and Unmarshal XML with Jackson
Libraries - IntelliJ IDEA Documentation

eulz3vhy

eulz3vhy3#

XMLEncoder适用于公共getter和setter:http://www.exampledepot.com/egs/java.beans/WriteXml.html
我想知道,为什么其他属性(如作者)在文件中(?)尝试添加公共getQuestions()setQuestions()方法。

相关问题