I have an application which is composed of many JFrame
objects (using Java and Netbeans). The 'main' frame has 4 buttons and each button opens another frame. Now my problem is that I want the whole application to be run on the web as a website.
I was considering 3 possible scenarios (from my research):
- Use Java Web Start
- Convert
JFrame
toJApplet
- Create from scratch a Java web application
I was hoping that maybe someone can give me some help, and guidelines of which option I should opt for.