I'm using the following command in runtime to extract a jar to a specific path, but the file is extracted in my class exe path. cmd="cmd /c cd F: && cd F:\workFolder\ProcessFile\ProcessJar\PJar && jar xvf F:\workFolder\ProcessFile\ProcessJar\agconfig.jar"
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec(cmd);
Suppose, I'm executing the above code in E:\, then the jar file is extracted in the same path.
Kindly help me to extract the jar in specified path (F:\workFolder\ProcessFile\ProcessJar\PJar)
unzip -dto set the directory. Note: jars are just zip files. See reference for unzip: linux.die.net/man/1/unzip – Stephan Nov 21 '11 at 10:12