writer = new FileWriter(f);
System.out.println("-----------------------------------------------------------------");
Serializer serializer = new XMLSerializer(writer, format);
Marshaller marshaller = new Marshaller(serializer.asDocumentHandler());
marshaller.setMapping(mapping);
marshaller.marshal(rootset);
System.out.println("-----------------------------------------------------------------");
System.out.println("done");
}
catch (Exception e)