POLITECHNIKA RZESZOWSKA - Wydział Elektrotechniki i Informatyki
import javax.xml.bind.JAXBContext; import javax.xml .bind.Marshaller;
ObjectFactory objFactory = new ObjectFactory));
Products products = (Products)objFactory.createProducts() ; Proces tworzenia dokumentu XML - marshalling
JAXBContext jc = JAXBContext.newlnstanoe("jp.jaxb") ; Utworzenie obiektu marshaller
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, new Boolean(true));
marshaller.marshal(products, new
FileOutputStream(”product.xml”)); —
JAVA Wykład i3
Copyright £ 2012 Jan PROKOP 44/236