简单 XML 框架反序列化的异常无参数构造函数

2022-09-02 19:22:18

我遇到了一个问题,即反序列化已使用简单 XML 序列化框架(simpleframework.org)成功序列化的 XML 文件。

抛出异常

org.simpleframework.xml.core.PersistenceException: Constructor not matched for class projet.sarelo.Note

这是调用:

Serializer serializer = new Persister();
File xmlFile = new File(path);
ContactList contactList = serializer.read(ContactList.class, xmlFile); <== Error

我的联系人列表.java

@Root(strict=false, name="ContacList")
public class ContactList {      
    @ElementArray (name = "Contacts")
    Contact [] contact;     
}   

我的笔记.java

public class Note {
    @Element(required=false)
    private String note;

    public Note(String note) {
        super();
        this.note = note;
    }

    public String getNote() {
        return note;
    }
}

我的联系人.java

@Root
public class Contact {
@Attribute(name = "id") 
public String id;       

@Element(name="Nom", required=false)                
String name; 

@ElementArray(name="Phones", required=false)
Phone [] phone; 

@ElementArray(name = "Emails", required=false)
Email [] email; 

@ElementArray(name = "Adresses", required=false)
Adresses [] adresses;

@ElementArray(name = "Notes", required=false)
Note [] note;

public Contact(String id, String name) {
    super();
    this.id = id;
    this.name = name;
}

public String getName() {
    return name;
}   

public String getId(){
    return id;
}
}

这就是我尝试反序列化的 XML 文件。

<ContactList>
<Contacts length="5">
  <contact id="1">
     <Adresses length="0"/>
     <Emails length="0"/>
     <Notes length="1">
        <note>
           <note>dgfdg</note>
        </note>
     </Notes>
  </contact>
  <contact id="2">
     <Adresses length="1">
        <adresses>
           <city>Paris </city>
           <postcode>751234 </postcode>
           <state>France</state>
           <street>Pignon</street>
        </adresses>
     </Adresses>
     <Emails length="1">
        <email type="home">
           <home>nicolas.sarkozy@elysee.fr</home>
        </email>
     </Emails>
     <Nom>Nicolas  Sarkozy </Nom>
     <Notes length="1">
        <note>
           <note>Je suis le president de toute la france. Le grand president</note>
        </note>
     </Notes>
     <Phones length="2">
        <phone>
           <home>+33 1234</home>
        </phone>
        <phone>
           <mobile>+33 0612</mobile>
        </phone>
     </Phones>
  </contact>
    ...
</Contacts>
</ContactList>

答案 1

无参数构造函数

我不知道这个特定的XML框架,但是,通常你需要一个构造函数,它不为您希望反序列化的每个类使用任何参数/参数。这样的构造函数被称为“no-arg”,“0-argument”或(正式的)零构造函数

否则,框架无法实例化该类。


答案 2

您不必从构造函数中删除内容。您可以添加类似如下的内容:

public Contact(@Element (name = "id") String id, @Element (name = "name") String name) {
...

它为我工作:)


推荐