Question

When I start a process without a GUI in Java, no console (cmd.exe) window is opened.

Example:

ProcessBuilder builder = new ProcessBuilder("process", nogui);
Process process = builder.start();

How can I see the console window?

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top