com.opslab.util.ZIPUtil at line 21 give a solution ``` try { ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(dest)); zipFile(file, zos, ""); zos.flush(); zos.close(); } catch (IOException e) { e.printStackTrace(); throw e; } ```