Desktop.getDesktop().open(new File("e:\unzip.exe teste.zip" ));
It does not work at all, it gives an error saying that the ZIP file was not found, I already tested it that way, and it did not work either:
ProcessBuilder p = new ProcessBuilder();
p.command("e:\unzip.exe", "e:\teste.zip");
p.start();
It did not work either, what am I doing wrong? I basically need to run the unzip.exe command with the ZIP file name in sequence, just that.
Thanks for any help! Thanks!