man.getMainAttributes().putValue("Content-Type", "application/zip");
JarOutputStream jout = new JarOutputStream(new FileOutputStream(provZip), man);
ZipEntry entry = new ZipEntry(PROVISIONING_AGENT_CONFIG);
jout.putNextEntry( entry );
jout.write(new byte[] { 10, 20, 30 });
jout.closeEntry();
jout.flush();
jout.close();
provZip.deleteOnExit();