Posted in General on Apr 4th, 2008
Starting a native application from your Java code is as simple as the following command: Runtime.getRuntime().exec("notepad.exe"); Of course, this adds platform dependency to your code, and if you want your application to be portable it’s a good practice to avoid using the exec() method. But if it is necessary to initiate a native application for […]