Question
I have an application written in Java. It is designed to run on a Linux box standalone. I am trying to spawn a new firefox windo
try { String url = "http://www.google.com"; java.awt.Desktop.getDesktop().browse(java.net.URI.create(url)); } catch (java.io.IOException e) { System.out.println(e.getMessage()); }