给定JApplet,如何获取与此applet对应的JFrame对象?
JApplet applet = this;
JRootPane rootPane = getRootPane();
Container contentPane = getContentPane();
JFrame jframe = ...; // How do I obtain the JFrame?
答案 0 :(得分:3)
您可以从Applet创建新的JFrame。但是没有像Applet这样的JFrame之类的容器。 Applet 是的容器。