JFrame表现得很奇怪

时间:2012-12-16 12:21:41

标签: java swing components jframe jinternalframe

在我的节目中,我正在播放带有背景歌曲的图像。 歌曲结束后,我需要关闭框架和JInternalFrame。 这是代码:

package projectfinal;
import javax.swing.*;
import java.io.File;
import java.io.IOException;

/* MORE IMPORTS */
public class ImagePanel extends javax.swing.JFrame {

    public static class audio extends JApplet {

        private static final int EXTERNAL_BUFFER_SIZE = 128000;

        public void aaudio() {

            String strFilename = "E:/zehreelay.wav";
            File soundFile = new File(strFilename);


            AudioInputStream audioInputStream = null;
            try {
                audioInputStream = AudioSystem.getAudioInputStream(soundFile);
            } catch (Exception e) {

                e.printStackTrace();
                System.exit(1);
            }


            AudioFormat audioFormat = audioInputStream.getFormat();

            SourceDataLine line = null;
            DataLine.Info info = new DataLine.Info(SourceDataLine.class,
                audioFormat);
            try {
                line = (SourceDataLine) AudioSystem.getLine(info);

                line.open(audioFormat);
            } catch (LineUnavailableException e) {
                e.printStackTrace();
                System.exit(1);
            } catch (Exception e) {
                e.printStackTrace();
                System.exit(1);
            }
            line.start();
            int nBytesRead = 0;
            byte[] abData = new byte[EXTERNAL_BUFFER_SIZE];
            while (nBytesRead != -1) {
                try {
                    nBytesRead = audioInputStream.read(abData, 0, abData.length);
                } catch (IOException e) {
                    e.printStackTrace();
                }
                if (nBytesRead >= 0) {
                    int nBytesWritten = line.write(abData, 0, nBytesRead);
                }

            }
            line.drain();

            line.close();

            jInternalFrame1.setVisible(false);
            /**
            * closing internal frame
            */
        }
    }

    /**
    * Creates new form NewJFrame
    */
    public ImagePanel() {

        initComponents();

    }

    @SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
    private void initComponents() {

        jInternalFrame1 = new javax.swing.JInternalFrame();
        jLabel1 = new javax.swing.JLabel();
        jLabel2 = new javax.swing.JLabel();
        jLabel3 = new javax.swing.JLabel();
        jLabel4 = new javax.swing.JLabel();
        jLabel5 = new javax.swing.JLabel();
        jLabel6 = new javax.swing.JLabel();

        javax.swing.GroupLayout jInternalFrame1Layout = new javax.swing.GroupLayout(jInternalFrame1.getContentPane());

        //////////more code////////////////////////////////////
        jInternalFrame1.getContentPane().setLayout(jInternalFrame1Layout);
        jInternalFrame1.addComponentListener(new java.awt.event.ComponentAdapter() {

            public void componentHidden(java.awt.event.ComponentEvent evt) {
                hiden(evt);
            }
        });
        /////adding a listner for component///
    }

    public static void main(String args[]) {


        start();

    }

    private void hiden(java.awt.event.ComponentEvent evt) {

        setVisible(false);
    }

    public static void start() {
        java.awt.EventQueue.invokeLater(new Runnable() {

            public void run() {
                new ImagePanel().setVisible(true);
            }
        });
        audio obj = new audio();
        obj.aaudio();
    }
    private static javax.swing.JInternalFrame jInternalFrame1;
    private javax.swing.JLabel jLabel1;
    private javax.swing.JLabel jLabel10;
    private javax.swing.JLabel jLabel11;
    private javax.swing.JLabel jLabel2;
    private javax.swing.JLabel jLabel3;
/////more variables...//////
}

这段代码很好,但是当我尝试而没有添加组件监听器时, 也就是说,getRootPane().SetVisible(false)jInternalFrame1.getContentPane().setVisible(false)setVisible(false)它们都没有工作,但只有在添加组件隐藏的侦听器之后才能解决问题。为什么?有什么理由吗?那么JInternalFrame是如何运作的(JInternalFrame.setVisible(false))?这与rootPane()有关吗?​​

1 个答案:

答案 0 :(得分:4)

Initial Threads中所述,“初始线程通过调用invokeLaterinvokeAndWait来调度GUI创建任务。”您正在尝试播放声音并在同一初始线程上运行GUI。相反,在初始线程上启动声音并在EDT上构建GUI,如here所示,或者启动一个单独的线程来播放声音,如here所示。

  

我不想使用AWT调度线程。

是的,您不希望使用AWT事件派发线程来播放声音,但必须将其用于GUI。

  

这个问题有点没有答案。声音播放很轻,因此必须由单个EDT处理。

我只能推测使用不同的组件会改变时间,足以影响平台上的结果。在程序正确同步之前,总有一些环境会起作用,而某些环境会失败。基本规则是:不要阻止EDT。另请参阅此answer,此answerJava Sound标记。