gpt4 book ai didi

java - 想要播放应用程序的背景音乐时,计算机找不到 'AudioStream'

转载 作者:行者123 更新时间:2023-12-03 02:20:35 25 4
gpt4 key购买 nike

因此,我试图做的是使我的应用程序使用.wav音乐文件在后台播放音乐。
我有此代码,但在以下位置找不到AudioStream

sun.audio.*;

如果您使用过Eclipse IDE,您将如何找到AudioStream进行导入...

这是我使用的代码。它在Sound类下,该类不会实现或扩展任何内容。
private AudioStream as;
private String lastSoundPath;

private void setStream(String soundPath){
this.lastSoundPath = soundPath;
try {
InputStream in = new FileInputStream(soundPath);
this.as = new AudioStream(in);
} catch (Exception e) {
e.printStackTrace();
}
}

这是我尝试玩Bangarang时遇到的错误(我知道随机...)
java.io.IOException: could not create audio stream from input stream
at sun.audio.AudioStream.<init>(AudioStream.java:82)
at vapour.studios.destiny.client.Sound.setStream(Sound.java:17)
at vapour.studios.destiny.client.Sound.<init>(Sound.java:24)
at vapour.studios.destiny.Destiny.main(Destiny.java:23)

提前致谢。

最佳答案

您需要在项目属性中使用javaSE 1.7作为执行环境。

它在Mac OS 10.8上对我有用

关于java - 想要播放应用程序的背景音乐时,计算机找不到 'AudioStream',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13488320/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com