Delli Kilari
Delli Kilari

Reputation: 1016

Making java application as plugin to browser

i wold like to develop an java application which has to be embed in Browser, could you please let me know is there way??

Upvotes: 0

Views: 113

Answers (4)

Michael Aaron Safyan
Michael Aaron Safyan

Reputation: 95639

There are different ways to do this, but my recommendation would be to use the Google Web Toolkit. With the Google Web Toolkit, Java code is compiled to HTML, CSS, and JavaScript and is executed as a web app within the browser. While you can, in theory, use Java applets, they do not integrate well with native browser functionality, have undesireable security properties, and are much more commonly disabled (due to the potential security issues) than other types of browser functionality. Whereas Java applets definitely are not first class citizens in browsers, HTML/CSS/JavaScript are, so with the Google Web Toolkit, you can write in Java but have your code treated like a first class citizen in most browsers.

Upvotes: 3

Raveesh Sharma
Raveesh Sharma

Reputation: 1486

http://download.oracle.com/javase/tutorial/deployment/applet/ this should help you out

Upvotes: 1

Jigar Joshi
Jigar Joshi

Reputation: 240996

See Applet

Upvotes: 1

Related Questions