0

I have .exe java file and .html file. Both of them in the same folder on a server. I need to execute the .exe java file by clicking on a button in the html page. Is this possible?

Thank you.

Vishnu
  • 11,614
  • 6
  • 51
  • 90
ZABGD
  • 39
  • 5
  • 1
    Possible duplicate of [How to run abc.exe using php](http://stackoverflow.com/questions/12251634/how-to-run-abc-exe-using-php) – camelccc Dec 03 '15 at 03:49

1 Answers1

0

No. If you want to run the Java code within a HTML page, then please use Applets.

Also note that Applet's require the end-user to have the Java plugin installed in their web browser. (It won't work on mobile).

Sebastian Roth
  • 11,344
  • 14
  • 61
  • 110