Sorry, Im sort of new to java, and I have a program that runs as a jnlp file, and I was wondering if instead of it downloading the program as a separate window, is it possible to run it as an applet within the browser window?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You want to run an app embedded in a html page instead of a own window? You should have a look at this example. Instead of extending a
JFrameyou have to extends aJApplet. Than you can embed a jar into a html page.