i want to execute the following command using a java program. "java -jar Demo.jar readExcelDemo.Hvd"
public class ExcelDriver {
public static void main(String[] args) throws IOException {
Runtime runTime = Runtime.getRuntime();
Process process = runTime.exec("cmd","/c", "cmd.exe","java -jar Demo readExcelDemo.Hvd");
}
}