le problème est comment puis-je générer une sortie de fichier XML au lieu de system.out?
package jaxbintroduction;
import Java.io.FileOutputStream;
import Java.io.OutputStream;
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
itemorder.Book quickXML = new itemorder.Book();
quickXML.setAuthor("Sillyme");
quickXML.setDescription("Dummie book");
quickXML.setISBN(123456789);
quickXML.setPrice((float)12.6);
quickXML.setPublisher("Progress");
quickXML.setTitle("Hello World Java");
try {
javax.xml.bind.JAXBContext jaxbCtx = javax.xml.bind.JAXBContext.newInstance(quickXML.getClass().getPackage().getName());
javax.xml.bind.Marshaller marshaller = jaxbCtx.createMarshaller();
marshaller.setProperty(javax.xml.bind.Marshaller.JAXB_ENCODING, "UTF-8"); //NOI18N
marshaller.setProperty(javax.xml.bind.Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
marshaller.marshal(quickXML, System.out);
OutputStream os = new FileOutputStream( "nosferatu.xml" );
marshaller.marshal( quickXML, os );
} catch (javax.xml.bind.JAXBException ex) {
// XXXTODO Handle exception
Java.util.logging.Logger.getLogger("global").log(Java.util.logging.Level.SEVERE, null, ex); //NOI18N
}
}
}
Vous êtes déjà en train de former nosferatu.xml
. Supprimez ou commentez la ligne:
marshaller.marshal(quickXML, System.out);
si vous ne souhaitez pas afficher le résultat et fermez la OutputStream
:
os.close();
Si vous utilisez une version 2.1 ou supérieure de JAXB, vous pouvez directement diriger vers un objet Java.io.File
:
File file = new File( "nosferatu.xml" );
marshaller.marshal( quickXML, file );
Javadoc correspondant
Il s’agit simplement d’un processus de conversion d’objet Java en fichier xml . Il est assez similaire à la sérialisation, vous devez être sûr de la sérialisation et du marshalling . Ici, j’ai fait les exemples pour le marshalling. Vous pouvez faire de même d'une manière similaire.
classe de haricot avec annotations jaxp:
package com.ofs.swinapps;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class Employee {
private String name;
private String id;
private String department;
private int age;
private int salary;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getDepartment() {
return department;
}
public void setDepartment(String department) {
this.department = department;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public int getSalary() {
return salary;
}
public void setSalary(int salary) {
this.salary = salary;
}
}
marshalling:
import Java.io.File;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
public class Java2XMLExample {
public static void main(String[] args) throws JAXBException {
Employee employee = new Employee();
employee.setName("Kowthal ganesh");
employee.setAge(23);
employee.setDepartment("Chola-ccms");
employee.setId("947");
employee.setSalary(8333);
File file = new File("D:/build.xml");
JAXBContext jaxbContext = JAXBContext.newInstance(Employee.class);
Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
jaxbMarshaller.marshal(employee, file);
}
}
La méthode Marshaller#marshall(...)
prend un paramètre OutputStream ou Writer. Vous auriez sûrement trouvé cela dans l'API si vous aviez regardé.