I am running a batch file, where I want to pass parameters from Textbox
Batch: test.bat
@echo off
set par1=%1
echo Parameter 1 is %par1%
mkdir %par1%
Java:
Process p = Runtime.getRuntime().exec("c:\\test.bat");
How to pass parameter to Test.bat file?


Process.. Please read, and implement the suggestions of, When Runtime.exec() won't. – Andrew Thompson Oct 18 '11 at 12:18