Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within Swing / AWT / SWT
Search Coderanch
Advance search
Google search
Register / Login
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Tim Cooke
paul wheaton
Paul Clapham
Ron McLeod
Sheriffs:
Jeanne Boyarsky
Liutauras Vilda
Saloon Keepers:
Tim Holloway
Carey Brown
Roland Mueller
Piet Souris
Bartenders:
Forum:
Swing / AWT / SWT
launching an application from swing button
Jane Dunne
Greenhorn
Posts: 15
posted 19 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Hi,
I want to launch an executable when the user clicks on a swing button but am not sure of how to do this. Any ideas?
Thanks.
Tal Nathan Tal Nathan
Greenhorn
Posts: 13
posted 19 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
import java.lang.Runtime;
String
cmd = "cmd /c notepad.exe"
Runtime.getRuntime().exec(cmd);
Havent tested this, but it should do the trick.
Jane Dunne
Greenhorn
Posts: 15
posted 19 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
That's it. Thanks
alot
!
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
hi, please tell differences
Swing design possible to integrate with servlet
List of Patterns used in Java SE
My java swing application can not visible on linux
Redirecting of one frame to another frame
More...