J'ai le XML suivant, pas de XSD ou de schéma avec lequel je veux analyser Java objet (s) utilisant JAXB car j'ai entendu mieux que SAX. Existe-t-il un moyen d'y parvenir avec des annotations ou une meilleure façon de le faire? Est-ce que cela fait que j'ai juste besoin d'une seule classe FosterHome? J'ai du mal à trouver comment faire cela, toute aide est reconnaissante.
Je pensais à l'origine à une classe FosterHome, Family et Child. Avec JAXB, 3 classes ne sont-elles plus nécessaires? Je ne sais pas comment y faire face car ChildID apparaît dans deux domaines différents.
<?xml version="1.0" encoding="UTF-8"?>
<FosterHome>
<Orphanage>Happy Days Daycare</Orphanage>
<Location>Apple Street</Location>
<Families>
<Family>
<ParentID>Adams</ParentID>
<ChildList>
<ChildID>Child1</ChildID>
<ChildID>Child2</ChildID>
</ChildList>
</Family>
<Family>
<ParentID>Adams</ParentID>
<ChildList>
<ChildID>Child3</ChildID>
<ChildID>Child4</ChildID>
</ChildList>
</Family>
</Families>
<RemainingChildList>
<ChildID>Child5</ChildID>
<ChildID>Child6</ChildID>
</RemainingChildList>
</FosterHome>
Vous pouvez faire ce qui suit. En tirant parti de @XmlElementWrapper
vous pouvez réduire le nombre de cours dont vous avez besoin:
FosterHome
package nov18;
import Java.util.List;
import javax.xml.bind.annotation.*;
@XmlRootElement(name="FosterHome")
@XmlAccessorType(XmlAccessType.FIELD)
public class FosterHome {
@XmlElement(name="Orphanage")
private String orphanage;
@XmlElement(name="Location")
private String location;
@XmlElementWrapper(name="Families")
@XmlElement(name="Family")
private List<Family> families;
@XmlElementWrapper(name="RemainingChildList")
@XmlElement(name="ChildID")
private List<String> remainingChildren;
}
Famille
package nov18;
import Java.util.List;
import javax.xml.bind.annotation.*;
@XmlAccessorType(XmlAccessType.FIELD)
public class Family {
@XmlElement(name="ParentID")
private String parentID;
@XmlElementWrapper(name="ChildList")
@XmlElement(name="ChildID")
private List<String> childList;
}
Démo
package nov18;
import Java.io.File;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(FosterHome.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
FosterHome fosterHome = (FosterHome) unmarshaller.unmarshal(new File("src/nov18/input.xml"));
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(fosterHome, System.out);
}
}
Entrée/sortie
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<FosterHome>
<Orphanage>Happy Days Daycare</Orphanage>
<Location>Apple Street</Location>
<Families>
<Family>
<ParentID>Adams</ParentID>
<ChildList>
<ChildID>Child1</ChildID>
<ChildID>Child2</ChildID>
</ChildList>
</Family>
<Family>
<ParentID>Adams</ParentID>
<ChildList>
<ChildID>Child3</ChildID>
<ChildID>Child4</ChildID>
</ChildList>
</Family>
</Families>
<RemainingChildList>
<ChildID>Child5</ChildID>
<ChildID>Child6</ChildID>
</RemainingChildList>
</FosterHome>
Pour plus d'informations
[~ # ~] mise à jour [~ # ~]
Existe-t-il un moyen simple de répéter/imprimer tous les ChildID de la classe Famille?
Vous pouvez effectuer les opérations suivantes:
for(Family family : fosterHome.getFamilies()) {
System.out.println(family.getParentID());
for(String childID : family.getChildList()) {
System.out.println(" " + childID);
}
}
try {
// create a JAXBContext capable of handling classes generated into
// the com.abhi.xml.jaxb.generated package
JAXBContext jc = JAXBContext.newInstance( "com.abhi.xml.jaxb.generated" );
// create an Unmarshaller
Unmarshaller u = jc.createUnmarshaller();
// unmarshal a FosterHome instance document into a tree of Java content
// objects composed of classes from the com.abhi.xml.jaxb.generated
// package.
JAXBElement<?> fhElement =(JAXBElement<?>)u.unmarshal
(new FileInputStream("yourfile.xml"));
FosterHome FH = (FosterHome)fhElement.getValue();
System.out.println(FH.getDesc());
// so on ..you can get all elements based on generated objects
} catch( JAXBException je ) {
je.printStackTrace();
} catch( IOException ioe ) {
ioe.printStackTrace();
}
Cela semble être un bon tutoriel pour ce faire
Il détaille comment générer un schéma xsd à partir d'un fichier xml et comment utiliser ce schéma pour générer des classes jaxb. À la fin, vous devriez vous retrouver avec plus d'une classe.