Exemplo n.º 1
0
 public void saveFile(File destFile) {
   try {
     BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(destFile));
     m_tree.writeOutputStream(bos);
     bos.flush();
     bos.close();
   } catch (Exception e) {
     e.printStackTrace();
   }
 }