[JAVA] Lancer un script shell depuis Java

Fermé
jerome - 11 mai 2005 à 22:45
 jernux - 18 oct. 2010 à 11:19
Bonjour,

Comment faire pour lancer un script shell (harris.sh) depuis un programme Java ?

Merci de votre aide
A voir également:

2 réponses

Utilisateur anonyme
11 mai 2005 à 23:03
Bonsoir,

Et comme ceci:

try {
Process proc = Runtime.getRuntime().exec("harris.sh");
}
catch(IOException e) {

}

? çà marche?
0
bilelm Messages postés 2 Date d'inscription mercredi 19 mai 2010 Statut Membre Dernière intervention 19 mai 2010
19 mai 2010 à 02:53
svp c urgent
je veu savoir comment lancer un script shell avec des parametres?
et merci
0
non ta méthode ne fonctionne pas,malheuresement .
0
kij_82 Messages postés 4089 Date d'inscription jeudi 7 avril 2005 Statut Contributeur Dernière intervention 30 septembre 2013 857
11 mai 2005 à 22:47
system("blabla.sh");
? ca marche pas ca ?
-1
Non ca marche pas, il me renvoie l'erreur suivante :

ActionOK.java:18: cannot resolve symbol
symbol : method System (java.lang.String)
location: class ActionOK
System("harris.sh");
^
1 error
0