Re: [Jython-users] How to use the execute() method in javaos
by Oti other posts by this author
Feb 28 2002 6:07AM messages near this date
[Jython-users] How to use the execute() method in javaos
|
[Jython-users] Jython and PIL (or something like PIL)?
[ Hugh Rodgers ]
> I have been trying to use the javaos.execute() method for
> some time now, unsuccessfully. I basically wanted to do the
> following:
>
> import os
> os.execute( "f:\tests\HelloWorld" )
>
> where HelloWorld is my compiled and working Java
> application.
Hello Hugh,
please try:
import os
os.system( "f:\tests\HelloWorld" )
I believe the execute() method is internal to javaos.py
Best wishes,
Oti.
__________________________________________________
Do You Yahoo!?
Yahoo! Greetings - Send FREE e-cards for every occasion!
http://greetings.yahoo.com
_______________________________________________
Jython-users mailing list
Jython-users@[...].net
https://lists.sourceforge.net/lists/listinfo/jython-users
Thread:
Hugh Rodgers
Oti
|