How to open new applet window from a applet

14,568

To open a new Java window (JFrame) from an applet, see the following extract from the Java tutorial:

//1. Create the frame.
JFrame frame = new JFrame("FrameDemo");

//2. Optional: What happens when the frame closes?
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

//3. Create components and put them in the frame.
//...create emptyLabel...
frame.getContentPane().add(emptyLabel, BorderLayout.CENTER);

//4. Size the frame.
frame.pack();

//5. Show it.
frame.setVisible(true);

To open a new browser window which also contains an applet showDocument(URL, "_blank"):

URL url = new URL(getCodeBase().getProtocol(),
                      getCodeBase().getHost(),
                      getCodeBase().getPort(),
                      "/next.html");
getAppletContext().showDocument(url, "_blank");
Share:
14,568
Admin
Author by

Admin

Updated on June 19, 2022

Comments

  • Admin
    Admin almost 2 years

    how can i open a new applet window from a applet itself?