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
Writing to the out stream from the process is the wrong direction. 'out' in that case means from the process to you. Try getting/writing to the input stream for the process and reading from the output stream to see the results.