Hi,
You can create ZIP-files using java.util.zip classes (part of standard Java API, not JCE). These classes do not supported encrypted ZIP-files. Which is no big deal, because ZIP-file encryption is not very secure anyway.
Better solution is to encrypt files using JCE and then using Java ZIP-classes to create a ZIP-file containing the encrypted files.
Regards,
Ronald
Not very helpful suggestion...
BUT...
Find out the file format, and encrypt the encyptable parts using the encryption methods of ZIP2.0, which you may or may not be able to find out elsewhere (perhaps on the net somewhere).
ie Build your zip file from scratch! Bit of a mission.