Re: calling an executable from my jsp program

2002-09-24 Thread Dmitry Namiot
See for example Host script tag from Coldtags suite: http://www.servletsuite.com/servlets/hosttag.htm -- Coldbeans Software - server-side Java (tm) components http://www.servletsuite.com __ The NEW Netscape 7.0 browser is now

calling an executable from my jsp program

2002-09-23 Thread Ramesh Kadirisani
Hi Guys, i am supposed to run an executable(called mp) from within one of my jsp programs. Basically i have to follow the following steps. from within the program == call the executable ==provide some input == executable gives out some output files == back into the program I did the same in my

Re: calling an executable from my jsp program

2002-09-23 Thread Branden Root
Ramesh, Use java.lang.Runtime. example: public class HelloWorld { public static void main(String[] args) { p = Runtime.getRuntime().exec(mp.exe); // if we want to capture the output from this program BufferedReader is = new

Re: calling an executable from my jsp program

2002-09-23 Thread Branden Root
Sorry, syntax error. That should be Process p, not just p :) On Monday 23 September 2002 11:25 am, you wrote: Ramesh, Use java.lang.Runtime. example: public class HelloWorld { public static void main(String[] args) { p =

Re: calling an executable from my jsp program

2002-09-23 Thread Steven A. Martin
, 2002 2:07 PM Subject: calling an executable from my jsp program Hi Guys, i am supposed to run an executable(called mp) from within one of my jsp programs. Basically i have to follow the following steps. from within the program == call the executable ==provide some input == executable gives out

Re: Executable file??

2001-05-17 Thread Joseph Ottinger
Yes, but it's not all that bright. See http://adjacency.org/java/questions/8.html for more on how and why not to. From: paramjit singh [EMAIL PROTECTED] Reply-To: A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Executable

Executable file??

2001-05-16 Thread paramjit singh
Is there anybody who can tell me how to make a Executable file in java?? I mean to say converting a .class file to a executable file?? Is this possible?? Parmjit Singh Get free email and a permanent address at http

Re: Executable file??

2001-05-16 Thread Tinou Bao
i think if you use micrsoft's jvm/development kit you can turn java application into executable. Tinou Bao http://www.tinou.com mailto:[EMAIL PROTECTED] - Original Message - From: paramjit singh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 17, 2001 12:31 AM Subject: [JSP

Re: Executable file??

2001-05-16 Thread Rishabh Agarwal
To: [EMAIL PROTECTED] Subject:Re: Executable file?? i think if you use micrsoft's jvm/development kit you can turn java application into executable. Tinou Bao http://www.tinou.com mailto:[EMAIL

Executable

2000-11-03 Thread Arora Yakesh.
Hello , This is my first mail to the list. I am just asking a fairly stoopid question. I just want to know how to pack the java files in one executable so that the whole software can be distributed in one package and can be installed properly and also it should have inbuilt JRE with it. . Thanx