Posted By:
Nathan_Meyers
Posted On:
Tuesday, October 23, 2001 08:55 AM
Use the Runtime.exec(String[]) form of the method:
Runtime.getRuntime().exec(new String[] {"generate", "filename", "-param", ...});
This is what Java does under the covers after separating the arguments to Runtime.exec(String) by finding the spaces.