无法编译。我正在尝试在使用 try and catch 时播放声音。wav 文件位于我的桌面上。我收到错误消息,例如:AudioStream 无法解析为类型 AudioStream 无法解析为类型 AudioPlayer 无法解析。
我不确定如何解决这个问题,我知道它很简单,
import java.io.FileInputStream;
import java.io.InputStream;
public class PlayMySoundApplication
{
public static void main(String[] args)
throws Exception
{
// open the sound file as a Java input stream
String applause2x = "/Users/pc/Desktop/applause2x.wav";
InputStream in = new FileInputStream(applause2x);
// create an audiostream from the inputstream
AudioStream audioStream = new AudioStream(in);
// play the audio clip with the audioplayer class
AudioPlayer.player.start(audioStream);
幕布斯7119047
宝慕林4294392
相关分类