Examples of exportToStream()


Examples of eu.planets_project.pp.plato.xml.LibraryExport.exportToStream()

        c.setMeasurementInfo(mInfo);
        ((LibraryRequirement)lib.getRoot().getChildren().get(0).getChildren().get(0)).addChild(c);
       
        LibraryExport export = new LibraryExport();
        File exported = new File ("test-data/lib_export.xml");
        export.exportToStream(lib, new FileOutputStream(exported));
       
        lib = export.importFromStream(new FileInputStream(exported));
        File reExported = new File(exported + "_out.xml");
        export.exportToStream(lib, new FileOutputStream(reExported));
       
View Full Code Here

Examples of eu.planets_project.pp.plato.xml.LibraryExport.exportToStream()

        File exported = new File ("test-data/lib_export.xml");
        export.exportToStream(lib, new FileOutputStream(exported));
       
        lib = export.importFromStream(new FileInputStream(exported));
        File reExported = new File(exported + "_out.xml");
        export.exportToStream(lib, new FileOutputStream(reExported));
       
        if (Arrays.equals(FileUtils.getBytesFromFile(exported), FileUtils.getBytesFromFile(reExported))) {
            // they are equal, remove the exported plan
            exported.delete();
            reExported.delete();
View Full Code Here

Examples of eu.planets_project.pp.plato.xml.LibraryExport.exportToStream()

                response.setHeader("Content-Disposition", "attachement; filename=\""+filename+".xml\"");
                // the length of the resulting XML file is unknown due to formatting: response.setContentLength(xml.length());
                try {
                    BufferedOutputStream out = new BufferedOutputStream(response.getOutputStream());
                   
                    exp.exportToStream(lib, out);
                   
                    out.flush();
                    out.close();
   
                } catch (IOException e) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.