[Java] petit probleme pour lancer un exe via java

petit probleme pour lancer un exe via java [Java] - Java - Programmation

Marsh Posté le 21-05-2002 à 21:11:31    

voila, j'ai tout dis. Je ne connais pas de fonction permettant de
lancer un exe a partir d'une appli java.
un equivalent de system() du C.
Merci!

Reply

Marsh Posté le 21-05-2002 à 21:11:31   

Reply

Marsh Posté le 21-05-2002 à 21:12:39    

Runtime.exec()
 
la javadoc c pas pour les chiens :D
 
 :hello:


---------------
Just because you feel good does not make you right
Reply

Marsh Posté le 21-05-2002 à 21:18:49    

merci a toi darklord.

Reply

Marsh Posté le 21-05-2002 à 21:21:52    

you're welcome ;)


---------------
Just because you feel good does not make you right
Reply

Marsh Posté le 21-05-2002 à 21:25:51    

bon, Runtime.exec() ne marche pas.
Enfin il est pas connu pas java2 1.3
t'es sur que ca marche?

Reply

Marsh Posté le 21-05-2002 à 21:26:40    

merry a écrit a écrit :

bon, Runtime.exec() ne marche pas.
Enfin il est pas connu pas java2 1.3
t'es sur que ca marche?  




 
sans blague que je suis sûr ... Tu as regardé la doc sur l'objet runtime au moins avant d'essayer au pif?  :heink:


---------------
Just because you feel good does not make you right
Reply

Marsh Posté le 21-05-2002 à 21:28:02    

Citation :


exec
public Process exec(String command)
             throws IOExceptionExecutes the specified string command in a separate process.  
The command argument is parsed into tokens and then executed as a command in a separate process. The token parsing is done by a StringTokenizer created by the call:  
 
 new StringTokenizer(command)
 with no further modifications of the character categories. This method has exactly the same effect as exec(command, null).
Parameters:
command - a specified system command.
Returns:
a Process object for managing the subprocess.
Throws:
SecurityException - if a security manager exists and its checkExec method doesn't allow creation of a subprocess.
IOException - if an I/O error occurs


 
http://java.sun.com/j2se/1.3/docs/ [...] ntime.html


---------------
Just because you feel good does not make you right
Reply

Marsh Posté le 22-05-2002 à 16:08:11    

ok, ca marche.
merci et desolé pour le derangement.

Reply

Marsh Posté le 23-05-2002 à 17:50:09    

:hello:  
tres fort :)

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed