Reputation: 9334
How is it possible, to run netbeans project in the browser?
My project have only one frame, and uses swing. I have no idea, how is it possible, to write an embedded java application, for browsers.
Upvotes: 0
Views: 934
Reputation: 942
I think if you want to launch it in Browser then it is better in Netbeans you chose Java EE project. This you can run in browser and you can create much better GUI than swing by using HTML and CSS. Of course it will be applet based.
Upvotes: 0
Reputation: 2219
Consider looking into JApplets
, this sounds to be what you are looking for.
Links:
Upvotes: 1
Reputation: 14413
You are looking for Java WebStart , take a look to this tutorial in Enabling Java Web Start in Netbeans. More information Lesson: Java Web Start Also you may interested in Applets, Lesson: Java Applets
Upvotes: 2