Run EXE from client side

后端 未结 7 1240
醉梦人生
醉梦人生 2020-12-03 23:58

I need run an exe file from client side. The Exe file exist in my C:\\ Directory. I need run this exe file from my WEB site.

How can I co this?

7条回答
  •  悲&欢浪女
    2020-12-04 00:24

    To run an .exe file in a browser, you would either need to cross-compile the file to JavaScript or emulate it using a virtual machine, such as v86. It might be possible to decompile an executable file and then compile to JavaScript using Emscripten.

提交回复
热议问题