here i'm trying to run a bat file from a java program. i want to run the bat file from c:\File\Create.bat but when i run the code it's searching in my d:\NetBeansPeoject\test.java where my java program is located, why??
here the code:
try
{
ProcessBuilder pb = new ProcessBuilder("c:\\File\\Create.bat");
Process p = pb.start();
}
catch (IOException e)
{
e.printStackTrace();
}
}
}