Iter Ator
Iter Ator

Reputation: 9334

Run netbeans java project in browser

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

Answers (3)

Raj
Raj

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.

Check this tutorial

Upvotes: 0

Josef E.
Josef E.

Reputation: 2219

Consider looking into JApplets, this sounds to be what you are looking for.

Links:

Upvotes: 1

nachokk
nachokk

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

Related Questions