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

标签 java applet

我在框架内有一个按钮。单击按钮后,小程序应加载到另一个框架中。这些异常(exception)情况即将出现。 defg 是我的小程序类。还有其他方法可以做到吗?谢谢。

     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)

最佳答案

所以问题出在你的小程序的 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);
        }
    }

}

然后你可以使用类似...的方式来调用它

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {

    new LoadAppletWorker().execute();

}

关于java - 从框架按钮单击打开小程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24381249/

相关文章:

java - 处理 PKCS12 keystore 时的 keytool 与 FIPS

java - 从 C++ 代码调用 Java 方法,不传递任何 JavaVm

java - 使用 Integer foo(String s) 将 List<String> 转换为 List<Integer>

java - 在列表框中选择第一个项目

客户端的 Java 媒体框架?

Java小程序不会移动图像

java - 在 Slick2d 像素游戏中相机跟随玩家的方法

Java小程序双缓冲问题(和循环问题)

java - 在浏览器沙箱中运行时,签名的 Java 小程序是否可以访问 USB 外围设备?

java - sortedMap 上的操作