I want to execute a batch file from a java program.
I am using the following command.
Runtime.getRuntime().exec("server.bat");
But the problem is I want to give a reative path instead of absolute path so that I can deploy that java project on any comp.
The dir structure of the project is like as follows:
com
|
project
|
------ parser
| |_____ Main.java
|
-------util
|_____ Server.bat
I want to run the "Server.bat" file in the "util" dir from the "Main.java" file in the "parser" dir.
You can try it with Desktop if supported (Java 1.6)