https://bz.apache.org/bugzilla/show_bug.cgi?id=63020
Rahul Dhoundiyal <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|INVALID |--- --- Comment #2 from Rahul Dhoundiyal <[email protected]> --- Yes It is working on command line. Also my system java version is jdk1.8.0_51. Whenever i tried to call it through Java program i am not getting any result or error. I tried to print using below code. BufferedReader input = new BufferedReader(new InputStreamReader(pro.getInputStream())); byte[] bytes = new byte[4096]; String line, output = ""; while ((line = input.readLine()) != null) { output = output + line; System.out.println(line); } input.close(); -- You are receiving this mail because: You are the assignee for the bug.
