I am trying to execute command line arguments via Java. For example:
// Execute command String command = \"cmd /c start cmd.exe\"; Process child = Runtime.ge
try { String command = "Command here"; Runtime.getRuntime().exec("cmd /c start cmd.exe /K " + command); } catch (IOException e) { e.printStackTrace(); }