4

Is is possible to decrypt a zip file in AS 400 with password using RPG/RPGLE? Which library I should use? Is there any example?

1 Answers1

2

It's simplere then ever.

Just use Jar in a QSH Command to unzip files:

ex. QSH CMD('cd /dest_dir;jar -xvf /your_dir/fileName.zip')

You can embed it in a CL Program or an RPGLE (using "system").

Here is the official link: http://www-01.ibm.com/support/docview.wss?crawler=1&uid=nas8N1015312

M4mu5
  • 93
  • 1
  • 8