已解决:我解决了!!我必须在 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);
}
}
}