alenlee
alenlee

Reputation: 61

To run a native java application from browser

I am using php. My question is i would like to run a java app that i created and put its jar file in the client side.I would like to run this jar file which is in the client side or ie, in the user desktop with a button click on a HTML page. Is this possible to run it with javascript or with any other web technologies.

Thanks And Regards, AlenLee MJ

Upvotes: 2

Views: 2202

Answers (1)

Jesper
Jesper

Reputation: 207006

Have a look at Java Web Start. This is a technology to let you start Java applications from the browser that are automatically downloaded from the server.

Alternatively, you could make your program a Java applet, which is a Java program that runs inside the browser.

Upvotes: 2

Related Questions