将JApplet添加到JFrame(或AWT帧)

时间:2012-03-27 14:25:55

标签: java swing jframe awt japplet

是否有可能将Applet(特定的JBufferedApplet)添加到JFrame(或AWT帧)。

我已经尝试过这个,但看起来Applet根本就没有运行。它使JFrame的背景颜色变为灰色(与Applet的颜色相同),但仅此而已。

不可能将JApplet更改为JPanel(我无法访问代码)。

目前所有必须要做的就是将Applet添加到JFrame / AWT框架

这是我到目前为止的代码:

import javax.swing.JFrame;

public class FormFrame extends JFrame {

    public FormFrame() {
        super("Oracle Forms");
        Main m = new Main();
        getContentPane().add(m); //add(m);
        setSize(800, 600);
        setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
        setVisible(true);
    }

    public static void main(String[] args) {
        new FormFrame();
    }

}

它给出的全部是Applet的背景颜色。看起来Applet没有运行。

1 个答案:

答案 0 :(得分:4)

您可以随时尝试添加applet的contentPane,例如:

public class FormFrame extends JFrame {

   public FormFrame() {
       super("Oracle Forms");
       MyApplet myApplet = new MyApplet();
       myApplet.start();
       myApplet.init();
       getContentPane().add(myApplet.getContentPane()); 
       setSize(800, 600); // not sure about this.  Usually better to call pack();
       setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
       setVisible(true);
   }

   public static void main(String[] args) {
      SwingUtilities.invokeLater(new Runnable() {
         public void run() {
            new FormFrame();
         }
      });
   }
}

不要忘记调用applet的init()方法,以允许它初始化其所有组件。

修改:根据trashgod的优秀建议为线程安全所做的更改。