1

When I execute the batch file directly in DOS, everything runs as expected. But when I execute the batch file from Java runTime, it will run only the commands that invoke jar files (ie. invoke the JVM). It does not run any native dos commands.

One problem is that I have no console to know why this is happening. I'm wondering if it's a permissions problem, but I have no idea. Anyone out there see this before?

The Java code used looks something like this:

Runtime.getRuntime().exec("c:\targetFolder\myBatch.bat"); // (Edited here for simplicity.)


The batch file looks something like this (noting that I've simplified it):
myBatch.bat:

call java myJar.jar blah blah --- yes
copy outputFile.out outputFile.bak --- NO
mkdir testDir --- NO
call java myJar.jar blah blah --- yes
call someOther.bat --- NO

The ---yes lines run fine and I see the expected results
The ---no lines do not run, but I have no idea why not b/c there is no console to tell me.

Thanks for any help!! Mike

2 Answers 2

4

You have to run the Windows command processor (the shell), giving it the batch file as an argument.

Runtime.getRuntime().exec( "cmd.exe /C c:\\targetFolder\\myBatch.bat" );
Sign up to request clarification or add additional context in comments.

4 Comments

You beat me by a few seconds with that answer
Thanks for the response race! :) Unfortunately, it doesn't solve my initial problem (though I appreciate improving my method of calling the batch). After playing with it I found that I could call native DOS commands, but only if they did not read/write from a particular folder. I believe the folder is somehow being locked by the JVM during a previous call in which I create a File object on that folder to view its contents. Trouble with that is I have no way to "unlock" it, and File class has no 'close' method. Is there a quick fix for this? Thanks again!
Instead of using Runtime.exec(), you should be using ProcessBuilder, and retrieving stand error from it, to SEE what's going wrong. See rgagnon.com/javadetails/java-0014.html for example.
I'll head that way; much obliged!
0

The fact that the second java calls executes indicates that all your NO lines are still executing, but just not displaying any output. Have you tried turning on echo on via

@ECHO ON

in your first line?

Secondly, your problem is probably the wrong working directory. Specify the working directory like so

Runtime.getRuntime().exec("c:\targetFolder\myBatch.bat",null,"c:\targetFolder"); 

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.