try {
//String location = dir1.getCanonicalPath()+"\\app_yamb_test1\\mySound.au";
//displayMessage(location);
AudioInputStream audio2 = AudioSystem.getAudioInputStream(getClass().getResourceAsStream("mySound.au"));
Clip clip2 = AudioSystem.getClip();
clip2.open(audio2);
clip2.start();
} catch (UnsupportedAudioFileException uae) {
System.out.println(uae);
JOptionPane.showMessageDialog(null, uae.toString());
} catch (IOException ioe) {
System.out.println("Couldn't find it");
JOptionPane.showMessageDialog(null, ioe.toString());
} catch (LineUnavailableException lua) {
System.out.println(lua);
JOptionPane.showMessageDialog(null, lua.toString());
}
当我从 netbeans 运行应用程序时,这段代码工作正常。声音响起,无一例外。但是,当我从 dist 文件夹运行它时,声音不播放并且我在消息对话框中得到 java.io.IOException: mark/reset not supported
。
我怎样才能解决这个问题?
原文由 Crais 发布,翻译遵循 CC BY-SA 4.0 许可协议
AudioSystem.getAudioInputStream(InputStream)
的文档说:因此,您提供给此方法的流必须支持可选的 标记/重置 功能。用
BufferedInputStream
装饰你的资源流。