process = builder.start();
// Runtime runtime = Runtime.getRuntime();
// process = runtime.exec(args.toArray(new String[args.size()]), new String[0]);
new StreamWriter(process.getErrorStream(), errStream);
new StreamWriter(process.getInputStream(), outStream);
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();