@param os The output stream to write to @throw JAXBException Upon error writing the XML file
399400401402403404405406407408409
} try { BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(loaderDataFile)); try { data.encode(out); } catch (JAXBException ex) { Logger.getLogger(JmeColladaLoader.class.getName()).log(Level.SEVERE, null, ex); } out.close(); } catch(IOException e) {