I used the following code to execute simple OS command on Windows: public class Ping { public static void main(String[] args) throws IOException { String command = “ping google.com”; …
I used the following code to execute simple OS command on Windows: public class Ping { public static void main(String[] args) throws IOException { String command = “ping google.com”; …