Java 从框架按钮打开小程序单击

Java 从框架按钮打开小程序单击,java,applet,Java,Applet,我有一个框架内的按钮。单击按钮后,小程序应加载到另一个帧中。这些例外正在出现。defg是我的applet类。还有别的办法吗。谢谢 private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling code here: JApplet applet = new d

我有一个框架内的按钮。单击按钮后,小程序应加载到另一个帧中。这些例外正在出现。defg是我的applet类。还有别的办法吗。谢谢

     private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
    // TODO add your handling code here:
     JApplet applet = new defg();

     // Send the applet an init() message.
     applet.init();

     // Construct a JFrame.
     final JFrame frame =
             new JFrame("FrameTitle");

     // Transfer the applet's context pane to the JFrame.
     frame.setContentPane(applet.getContentPane());

     // Transfer the applet's menu bar into the JFrame.
     // This line can be omitted if the applet
     // does not create a menu bar.
     frame.setJMenuBar(applet.getJMenuBar());

     // Make the application shut down when the user clicks
     // on the close button.
     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

     // Set the size of the frame.
     // To pack the frame as tightly as possible
     // replace the setSize() message with the following.
     // frame.pack();
     frame.setSize(800, 800);

     // Set the location of the frame.
     frame.setLocation(30, 30);

     // Show the frame.
     frame.setVisible(true);



}  
例外

  Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at defg.init(defg.java:198)
at AppMain1.jButton1ActionPerformed(AppMain1.java:80)
at AppMain1.access$0(AppMain1.java:75)
at AppMain1$1.actionPerformed(AppMain1.java:40)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
at java.awt.Component.processMouseEvent(Component.java:6505)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3320)
at java.awt.Component.processEvent(Component.java:6270)
at java.awt.Container.processEvent(Container.java:2229)
at java.awt.Component.dispatchEventImpl(Component.java:4861)
at java.awt.Container.dispatchEventImpl(Container.java:2287)
at java.awt.Component.dispatchEvent(Component.java:4687)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
at java.awt.Container.dispatchEventImpl(Container.java:2273)
at java.awt.Window.dispatchEventImpl(Window.java:2719)
at java.awt.Component.dispatchEvent(Component.java:4687)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:735)
at java.awt.EventQueue.access$200(EventQueue.java:103)
at java.awt.EventQueue$3.run(EventQueue.java:694)
at java.awt.EventQueue$3.run(EventQueue.java:692)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
at java.awt.EventQueue$4.run(EventQueue.java:708)
at java.awt.EventQueue$4.run(EventQueue.java:706)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:705)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)

所以问题出在applet的init方法中

try { 
    java.awt.EventQueue.invokeAndWait(new Runnable() { 
        public void run() { 
            initComponents(); 
        } 
    }); 
} catch (Exception ex) { 
    ex.printStackTrace(); 
}
不能在事件调度线程的上下文中调用
invokeAndWait
,因为这将生成死锁

相反,您希望从事件调度线程外部调用
init
,然后在加载时加载UI的其余部分

在这种情况下,
SwingWorker
可能很有用,例如

public class LoadAppletWorker extends SwingWorker<JApplet, JApplet> {

    @Override
    protected JApplet doInBackground() throws Exception {
        // TODO add your handling code here:
        JApplet applet = new defg();

        // Send the applet an init() message.
        applet.init();

        return applet;
    }

    @Override
    protected void done() {
        try {
            JApplet applet = get();

            // Construct a JFrame.
            final JFrame frame
                    = new JFrame("FrameTitle");

            // Transfer the applet's context pane to the JFrame.
            frame.setContentPane(applet.getContentPane());

            // Transfer the applet's menu bar into the JFrame.
            // This line can be omitted if the applet
            // does not create a menu bar.
            frame.setJMenuBar(applet.getJMenuBar());

            // Make the application shut down when the user clicks
            // on the close button.
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

            // Set the size of the frame.
            // To pack the frame as tightly as possible
            // replace the setSize() message with the following.
            // frame.pack();
            frame.setSize(800, 800);

            // Set the location of the frame.
            frame.setLocation(30, 30);

            // Show the frame.
            frame.setVisible(true);
        } catch (InterruptedException | ExecutionException ex) {
            Logger.getLogger(Initapp.class.getName()).log(Level.SEVERE, null, ex);
        }
    }

}

还有更多的堆栈跟踪吗?@对不起。现在添加问题似乎在
defg.init(defg.java:190)
中,您的
defg
小程序的
init
方法中有什么内容?请尝试{java.awt.EventQueue.invokeAndWait(new Runnable(){public void run(){initComponents();}});}catch(异常ex){ex.printStackTrace();}这是你的问题。考虑使用<代码> VoCueltAt/Case>而不是<代码>调用和等待>代码>。这样说可能会破坏API的期望。你可能需要在一个单独的线程上初始化applet。也许一个代码> SwitgWorks只需小心,我认为还有别的事情需要你这样做来加载一个applet。但我不能100%确定它们都是什么(我认为applet上下文就是其中之一)
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {

    new LoadAppletWorker().execute();

}