tags:

views:

852

answers:

1

Hi, I was wondering if someone could tell me the best way to call a Visual Basic program from JAVA. I have a few VB applications that I want to run from a JAVA application that I'm building.

Thanks!

+2  A: 

You can use ProcessBuilder.start() or the older Runtime.exec() to launch processes. This information is available in the Java SE docs.

JJO
JJO, fixed capitalization and provided the link for Runtime.exec(). +1.
paxdiablo