Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/11/2010, 19:53
ivanrod12
 
Fecha de Ingreso: abril-2010
Mensajes: 25
Antigüedad: 14 años, 8 meses
Puntos: 1
Respuesta: Es posible abrir un archivo html en navegador por una(s) instrucciones en

Código Java:
Ver original
  1. String url = "http://www.google.com";
  2.     String osName = System.getProperty("os.name");
  3.         try {
  4.             if (osName.startsWith("Windows")) {
  5.                 Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + url);
  6.             } else if (osName.startsWith("Mac OS X")) {
  7.                  Runtime.getRuntime().exec("open -a safari " + url);
  8.                  Runtime.getRuntime().exec("open " + url + "/index.html");
  9.                 Runtime.getRuntime().exec("open " + url);
  10.             } else {
  11.                 System.out.println("Please open a browser and go to "+ url);
  12.             }
  13.         } catch (IOException e) {
  14.             System.out.println("Failed to start a browser to open the url " + url);
  15.             e.printStackTrace();
  16.         }

Esto puede que te sirva :D , Abre el navegador del default que tengas .
suerte.