Reputation: 41
I'm doing a portfolio with projects I've made and I have some Java Swing projects. I'm not sure about which is the best way of showing them in my web. I've tried to export them to jar and embed in the html but it doesn't work. Is there any other posibilities?
Upvotes: 2
Views: 286
Reputation: 13489
You can use an Applet to show your Swing project.
Or you can use Webstart to launch your applicatoin via a website. The Webstart option display the application complete in its own frame. There is nothing embedded in the HTML.
Upvotes: 3