0

当我单击按钮时,我创建了一个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.*;在我的程序中使用过。

4

1 回答 1

2

你记得导入java.io.File吗?那是编译器说它不知道的类。

于 2012-05-13T08:38:53.297 回答