Hi, Is there any way to open the command prompt and change directory in the command prompt and run the batch file in the same command prompt using java.
I know how to open the command prompt using java. Thanks,
|
|
Hi, Is there any way to open the command prompt and change directory in the command prompt and run the batch file in the same command prompt using java. I know how to open the command prompt using java. Thanks,
|
||
|
|
|
|
You can encode the CD and the batch file in the value for cmd.exe /K. From the doco (cmd /?):
For Example:
For more detail, run:
from the command line. |
|||
|
|
|
It's difficult to do from Java for goofy platform-independence reasons: basically what if you're running java on a system that doesn't have hierarchical directories? There are a number of workarounds depending on what you're really trying to do, but possibly the simplest is to run the eventual command using
. |
||
|
|
|
|
Keep the batch file in "path". You can execute it without going to any specific directory. (For example you can have an entry "set path=%path%;C:..........\YourBatchFile.bat" in Autoexec.bat in Windows environment) |
||
|
|
|
|
get the environment var "comspec" then exec %comspec% /c start/d directory /b batchfile.bat |
||
|
|
|
|
A couple of the java.lang.Runtime.exec() variations does have a dir argument, so I assume you are not thinking of that? You can compile the following C program and execute as a wrapper to start any program in any directory you want. If you use a String array with Runtime.exec you will avoid all issues of command line parsing/portability/proper quoting of the arguments. I do not have any windows machine to test on here, but if you compile the C program to cdexe.exe you should be able to use it as the following:
I guess unistd.h is maybe not available on windows, but just substitute with one containing a execv prototype.
|
||
|
|
|
Be wary of Java's exec. It can hang if the batch process fills the output buffer, and cause other weird problems. I suggest you look at apache exec. Specifically for your needs you should note that the Executor interface has a setWorkingDirectory method. Basic usage:
|
||
|
|