Runtime r = Runtime.getRuntime();
Process pr = r.exec(cmdString)
I can get the prompt result when I try "cmd /c type f1.properties", however, when the size of file is larger the command will hang and no output I could get and no exception occurred.
Is there any limitation for java to cache the prompt result?