1

已解决:我解决了!!我必须在 netbeans ide 中增加我的项目属性的堆大小,而不是在 netbeans ide 配置本身

我有一个非常简单的游戏应用程序,我使用 javax.sound.sampled 包中的 Clip 对象播放背景音乐(几乎 9m 长和 8mb 大小的 mp3 格式文件)我将其转换为 wav 文件并它变成了 87mb >_<。我有用于按钮的小 wav 文件。问题是每次我终止程序时都会收到 OutOfMemoryError 。我制作了一个应用程序,该应用程序仅在您先单击长波文件后多次单击短剪辑,然后单击终止按钮结束它,然后我收到该错误时,才会模拟相同的问题。但是我不知道如何为其他人提供相同的 wav 文件来尝试测试这个样本

import javax.swing.*;
import javax.sound.sampled.*;
import java.awt.*;
import java.awt.event.*;
import java.io.File;
public class ClipClass extends JPanel implements ActionListener{
private JButton longClip, shortClip1,shortClip2,quit;
public ClipClass(){
    setLayout(new GridLayout(2,2,0,0));
    longClip = new JButton("Play long wav");
    shortClip1 = new JButton("Play short wav1");
    shortClip2 = new JButton("Play short wav2");
    quit = new JButton("Terminate");
    add(longClip);
    add(shortClip1);
    add(shortClip2);
    add(quit);
    longClip.addActionListener(this);
    shortClip1.addActionListener(this);
    shortClip2.addActionListener(this);
    quit.addActionListener(this);
}
public synchronized void playSound(final String url) {
    SwingUtilities.invokeLater(new Runnable() {
        @Override
        public void run() {
            try {
                Clip clip = AudioSystem.getClip();
                AudioInputStream inputStream = AudioSystem.getAudioInputStream(new File(url));
                clip.open(inputStream);
                clip.start();
                clip.addLineListener(new LineListener() {
                    @Override
                    public void update(LineEvent evt) {
                        if (evt.getType() == LineEvent.Type.STOP) {
                            evt.getLine().close();
                        }
                    }
                });
            } catch (Exception e) {
            }
        }
    });
}
public static void main(String[] args){
    JFrame frame = new JFrame("SampleSoundOOME");
    ClipClass pane = new ClipClass();
    frame.setContentPane(pane);
    frame.setVisible(true);
    frame.pack();
}

@Override
public void actionPerformed(ActionEvent e) {
    if(e.getSource()==longClip){
        playSound("C:/Users/Sony/Documents/NetBeansProjects/Sphere Break/Trance.wav");
    }if(e.getSource()==shortClip1){
        playSound("C:/Users/Sony/Documents/NetBeansProjects/Sphere Break/KDE_Window_Sticky.wav");
    }if(e.getSource()==shortClip2){
        playSound("C:/Users/Sony/Documents/NetBeansProjects/Sphere Break/KDE_Window_Iconify.wav");
    }if(e.getSource()==quit){
        System.exit(0);
    }
}
}
4

2 回答 2

0

这背后的原因是您的程序使用了过多的内存,超出了您分配的堆大小(或默认大小)。内存泄漏也可能对此负责。您可以通过取消所有引用来帮助 Java 垃圾收集器。否则,您可以通过-Xmx256mwhere m=设置堆大小Megabyte

于 2013-01-29T07:11:36.657 回答
0

请根据您的 .wav 文件大小检查 JVM 堆大小,分配给 JVM 堆的内存可能不够。

使用:java -Xmx* 增加 jvm 堆* - 你可以分配的内存在哪里

此外,在例外情况下:

catch (Exception e) {
           //close `inputStream` 
           // close `clip`
}
于 2013-01-29T07:13:43.640 回答