[Java] Ouvrir une page php

Résolu/Fermé
jebok Messages postés 358 Date d'inscription lundi 16 mai 2005 Statut Membre Dernière intervention 23 octobre 2007 - 23 août 2005 à 15:28
 Yassine Guadina - 19 avril 2015 à 13:00
Bonjour,

comment faire pour ouvrir une page php (ou html) depuis une appli Java ?
J'ai essayé avec
Runtime.getRuntime().exec(http://www.site.com/page.php);

mais j'obtiens l'erreur suivante :
CreateProcess: http://www.site.com/index.php error=2

A voir également:

4 réponses

Runtime.getRuntime().load("accueil.html");
1
jebok Messages postés 358 Date d'inscription lundi 16 mai 2005 Statut Membre Dernière intervention 23 octobre 2007 51
23 août 2005 à 16:53
Quelqu'un a une idée ?
0
non
0

Runtime r = Runtime.getRuntime();

try{
r.exec("cmd /c start http://www.google.fr/");
System.out.println("Ouverture réussi");
}

catch (IOException ex){
ex.printStackTrace();
System.out.println("Ouverture échoué");
}
0