How can I run an .exe file in a program in java?
-
I want to run an exe file in my project. I mean when I run my codes,a specific executable file run. How can I do that?
-
I want to run an exe file in my project. I mean when I run my codes,a specific executable file run. How can I do that?
-
I expect you want to use the Runtime[^] class.
Unrequited desire is character building. OriginalGriff I'm sitting here giving you a standing ovation - Len Goodman
Since 1.5 ProcessBuilder has been recommended over Runtime. Having said that, I still use Runtime because it's what I'm used to and old habits die hard.
-
Since 1.5 ProcessBuilder has been recommended over Runtime. Having said that, I still use Runtime because it's what I'm used to and old habits die hard.
I used Google to check; it's a while since I sat and read the latest documentation and guidance notes.
Unrequited desire is character building. OriginalGriff I'm sitting here giving you a standing ovation - Len Goodman