In the process of running my java application, I launch a third-party program via the command line: how to get what this application returns to the console? Run like this:
Runtime.getRuntime().exec("C:\\findbugs.bat");
In the process of running my java application, I launch a third-party program via the command line: how to get what this application returns to the console? Run like this:
Runtime.getRuntime().exec("C:\\findbugs.bat");
Source: https://ru.stackoverflow.com/questions/294789/
All Articles