Say I have a current running process known, how can I turn this into a Process object in Java? The process is already running, so I don\'t want to spawn off another one, I j
You can't. Every operation in Process requires that the process is a child process. Not an arbitrary process.