当我单击按钮时,我创建了一个class
播放声音。
这是代码:
public void playSound()
{
try
{
AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new File("beep-1.wav"));
Clip clip = AudioSystem.getClip( );
clip.open(audioInputStream);
clip.start( );
}
catch(Exception e)
{
System.out.println("Error with playing sound.");
e.printStackTrace( );
}
}
但是当我编译时,我得到了这个错误:
error: cannot find symbol
AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new File("beep-1.wav"));
^
symbol: class File
location: class MemoryGame
1 error
Process completed.
有什么问题getAudioInputStream()
?
我import javax.sound.sampled.*;
在我的程序中使用过。