I have the following windows batch file (run.bat):
@echo off echo hello batch file to sysout
And the following java code, which runs the ba
Use getOutputStream() on the process, instead of using System.out.println(). Sometimes the semantics change between Java implementations.
getOutputStream()
System.out.println()
This seems to be a bugfix actually - the newer implementation makes sense.