Is there a way to execute a command in java that doesn\'t suffer from the startup overhead (slowness) of using ProcessBuilder?
More detail: I am using im4java which
Runtime.getRuntime().exec(...)
can be used to run an external command. You can turn your List into a command array or a string to pass to exec().