gpt4 book ai didi

java - 将 JApplet 添加到 JFrame(或 AWT 框架)

转载 作者:行者123 更新时间:2023-11-30 07:27:13 25 4
gpt4 key购买 nike

是否有可能向 JFrame(或 AWT Frame)添加 Applet(具体来说是 JBufferedApplet)。

我已经试过了,但看起来 Applet 根本无法运行。它使 JFrame 的背景颜色变为灰色(与 Applet 的颜色相同),仅此而已。

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

目前所要做的就是将 Applet 添加到 JFrame/AWT Frame

这是我目前的代码:

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 似乎没有运行。

最佳答案

您总是可以尝试添加小程序的 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();
}
});
}
}

只是不要忘记调用小程序的 init() 方法以允许它初始化所有组件。

编辑:根据 trashgod 的优秀建议对线程安全性进行更改。

关于java - 将 JApplet 添加到 JFrame(或 AWT 框架),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9891541/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com