Wrathchild
Technical User
Hi, my code works with the application path and website address passed to the command, but I would like to use a string "IE" to store the app path and then pass IE instead.
String IE = "C:\\Program Files\\Internet Explorer\\IEXPLORE.EXE";
String [] commands = new String [] {IE," System.out.println (commands);
Process child = Runtime.getRuntime ().exec (commands);
I get "Cannot resolve symbol, symbol variable: IE"
thanks!
String IE = "C:\\Program Files\\Internet Explorer\\IEXPLORE.EXE";
String [] commands = new String [] {IE," System.out.println (commands);
Process child = Runtime.getRuntime ().exec (commands);
I get "Cannot resolve symbol, symbol variable: IE"
thanks!