Java 当 swing 应用程序 运行 作为 APPLET 时,组件是不可见的

Java components are invisible when swing app is run as APPLET

尊敬的大家, 我正在 ECLIPSE 中制作一个 Swing 应用程序 window。当我 运行 程序作为 'JAVA-Application' 程序运行良好。但是,当我尝试将程序 运行 作为 "Java_applet" 时,'command button'、'textbox' 等组件是不可见的。

我是 Java 的新手。我以前从事过 C#。请帮助我。

import java.awt.EventQueue;
import java.applet.*;
import javax.swing.JFrame;
import javax.swing.JRadioButton;
import java.awt.BorderLayout;

public class sa extends Applet{

    private JFrame frame;

    /**
     * Launch the application.
     */
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    sa window = new sa();
                    window.frame.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    /**
     * Create the application.
     */
    public sa() {
        initialize();
    }

    /**
     * Initialize the contents of the frame.
     */
    private void initialize() {
        frame = new JFrame();
        frame.setBounds(100, 100, 450, 300);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JRadioButton rdbtnNewRadioButton = new JRadioButton("New radio button");
        frame.getContentPane().add(rdbtnNewRadioButton, BorderLayout.CENTER);
    }
}

您不能只是让 class 扩展 Applet 并期望这就是它像一个适当的 Applet 一样运行所必需的。您需要为 class 提供适当的初始化方法并从该方法中构建 GUI。但最重要的是,您需要阅读 Applet 教程,任何像样的教程都应该这样做。我自己会让我的 GUI 扩展 JPanel,在其构造函数中构建 GUI,然后我可以根据需要在 JApplet 或 JFrame 中使用这个 JPanel。

正如安德鲁在评论中恰当指出的那样,

I think the OP should also dump the entire 'applet' part of it and develop the JFrame with an idea to launching it from a link using Java Web Start. At least then it would have a better chance for working for users of Chrome and FireFox (which are both planning to remove all support for applets).