从jGRASP运行时播放音频(.wav),但不从Eclipse或IntelliJ IDEA运行

时间:2013-02-02 17:00:02

标签: eclipse audio intellij-idea jgrasp

此代码工作正常并在jGRASP中播放声音但是当它从IDEA或Eclipse中的项目运行时,没有声音播放。我怎样才能在所有IDE上使用它?

public void playClip( String clipPlay ){
    AudioClip clip = null;
    File filePlay = new File( clipPlay );

    try{
        clip = Applet.newAudioClip( filePlay.toURI().toURL() );
    }
    catch( MalformedURLException ex ){
        System.err.println( ex.getMessage() );           
    }

    clip.play();
}

0 个答案:

没有答案