We're a community of 1.1M IT Pros here for help, advice, solutions, professional growth and fun. Join us!
1,080,318 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Start New Discussion   Closed to New Replies

How to run external .exe programs from java

Hi everyone,

  Could some one please tell me or show me the entire codings of how to run external .exe programs in java. I want to do this because i have a lot c/vb programs that i want to run in my java program.

Thank You

Yours Sincerely

Richard West

9
Contributors
13
Replies
8 Years
Discussion Span
10 Months Ago
Last Updated
25
Views
freesoft_2000
Practically a Master Poster
623 posts since Jun 2004
Reputation Points: 25
Solved Threads: 10
Skill Endorsements: 0

the code goes like this:

try
{
 Runtime rt = Rintime.getRuntime() ;
 Process p = rt.exec("Program.exe") ;
 InputStream in = p.getInputStream() ;
 OutputStream out = p.getOutputStream ();
 InputSream err = p,getErrorStram() ;
 
//do whatever you want
 //some more code
 
 p.destroy() ;
}catch(Exception exc){/*handle exception*/}
BlackDeath
Newbie Poster
4 posts since Jul 2004
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0

try out this code ... it will not be platform independent ....
Process p = Runtime.getRuntime().exec("c:\myprogram.exe");

I dont have the time to test it .... if you succeed please tell me too.
:eek:

nanosani
Technize.net addict
Team Colleague
1,832 posts since Jul 2004
Reputation Points: 45
Solved Threads: 56
Skill Endorsements: 0

Hi everyone,
The above codes only seem to run external .exe programs but what if i want to run external jar programs. Could someone show me or e-mail me the codings of how to do this the right way.


Thank You

Yours Sincerely

Richard West

freesoft_2000
Practically a Master Poster
623 posts since Jun 2004
Reputation Points: 25
Solved Threads: 10
Skill Endorsements: 0
nanosani
Technize.net addict
Team Colleague
1,832 posts since Jul 2004
Reputation Points: 45
Solved Threads: 56
Skill Endorsements: 0

i'm using the code from above to try to run a program and here's my problem... when i call an exe that i wrote in VB, the program runs fine. if i call a c or c++ program the program loads into memory (i see it in the processes tab) but the console doesn't open up with the program in it.
here's the code i have right now for it...

try
   {
    Runtime rt = Runtime.getRuntime();
    Process p = rt.exec("vbex.exe");
    InputStream in = p.getInputStream();
    OutputStream out = p.getOutputStream();
    InputStream err = p.getErrorStream();

    p.destroy() ;
    }catch(Exception exc){/*handle exception*/}
ozzytx
Newbie Poster
1 post since Oct 2004
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0

hi everyone,

              Do this instead



void run ()
{
try
{
Runtime rt = Runtime.getRuntime();
Process p = rt.exec("vbex.exe");
}

catch(Exception e)
{

}

}

I hope this helps you

Richard West

freesoft_2000
Practically a Master Poster
623 posts since Jun 2004
Reputation Points: 25
Solved Threads: 10
Skill Endorsements: 0

HI EVERYBODY,
I have a question regarding this i used this to call exe application but it is opening independently, but what if i want to run that particular exe in the frame itsself like an JInternal Frame..

Please help me regaridng this..

Thanks in advance..

Subroto Bhattacharjee

subroto1486
Newbie Poster
3 posts since Jun 2008
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0

Hi,

The following example shows opening a notepad using java application.

tsmc
Newbie Poster
2 posts since Apr 2011
Reputation Points: 7
Solved Threads: 0
Skill Endorsements: 0

There are a load of answers in this 2004 zombie thread using Runtime.exec to run an external process, but this was superseded in Java 5 (JDK 1.5) with ProcessBuilder, which is now preferred to Runtime.exec
http://www.java-tips.org/java-se-tips/java.util/from-runtime.exec-to-processbuilder.html

JamesCherrill
... trying to help
Moderator
8,660 posts since Apr 2008
Reputation Points: 2,636
Solved Threads: 1,475
Skill Endorsements: 33

How to run external .exe programs from java in remote machine?

Hi,

I want to run a batch file in a remote machine using JAVA. Could anyone advise, how this is possible in JAVA code.

Reagrds
Manish

manish.mehta
Newbie Poster
3 posts since Jul 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

first of all, you could have figured out that this thread is 8 years old, and has been revived way to many times already. secondly, you could 've read the answers already given.

also, you might want to provide some more information.
are we talking a complete separate system? do you have a "client" app on the remote machine, can you access the remote machine, ... ?

stultuske
Industrious Poster
4,489 posts since Jan 2007
Reputation Points: 1,377
Solved Threads: 627
Skill Endorsements: 25

Yes, i saw that, but i thought my problem is something similar to it. hence i posted here.

Actually, i am using Selenium Grid and running my test cases on remote machine. And i am also using Screen recorder to record video for my test. When i start Screen recorder, it only starts in the hub machine (my machine). So i thought to run the Screen recorder on remote machine by running a batch file using my Selenium Java code.

manish.mehta
Newbie Poster
3 posts since Jul 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0

DaniWeb Member Rules include:
"Do not hijack old threads by posting a new question as a reply to an old one"
http://www.daniweb.com/community/rules
Please start your own new thread for your question

JamesCherrill
... trying to help
Moderator
8,660 posts since Apr 2008
Reputation Points: 2,636
Solved Threads: 1,475
Skill Endorsements: 33
 
© 2013 DaniWeb® LLC
Page generated in 0.0964 seconds using 2.7MB