Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to call a jar file from a windows batch file. One requirement is to be able to pass all the batch file arguments as-is to the jar file invocation. For example,

Required Command line:
foo.bat --flag1=x --flag2=y --flag3=z

The batch file foo.bat should invoke foo.jar like follows:
java -jar foo.jar --flag1=x --flag2=y --flag3=z

How do I make the batch file do this? I can do some batch variable magic with % to do this, but is there a simpler way to do this?

share|improve this question

1 Answer

up vote 18 down vote accepted

Does

java -jar foo.jar %*

meet your needs? It should add all parameters from the batch execution to your application call within the batch file.

share|improve this answer
That works as expected. thanks! – Krishna Gopalakrishnan Jun 11 '09 at 10:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.