Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Run EXE (notepad.exe, calc.exe etc) on Client Machine

Farrukh ShaikhFeb 8 2016 — edited Feb 8 2016

Dear All,

I am running my oracle ADF application. My requirement is to run the Application on client machine. Like when end user click the button then EXE file should open on client machine not at server side. Currently when i open the application it opens at server end where WEBLOGIC is installed not at client end.

I am using below command to run the application

        try {

            Process p =Runtime.getRuntime().exec("c:\\windows\System32\\calc.exe");

            p.waitFor();

        } catch (IOException ioe) {

            // TODO: Add catch code

            ioe.printStackTrace();

        } catch (InterruptedException ie) {

            // TODO: Add catch code

            ie.printStackTrace();

        }

please help me to resolve this matter.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 7 2016
Added on Feb 8 2016
4 comments
1,312 views