java中加载声音文件的方法

做过一个游戏,需要给按键添加声音。可以构造一个音乐类,需要的时候new Music(“声音文件地址”),就可以了。


import sun.audio.AudioPlayer;
import sun.audio.AudioStream;

public class Music {
	String namespath;
	public Music(String spath){
		this.namespath=spath;
		play();
	}
  public void play() {  

  try   {  
	  FileInputStream fileau=new   FileInputStream(namespath);  
          AudioStream   as=new   AudioStream(fileau);  
          AudioPlayer.player.start(as);  
          AudioPlayer.player.start(as);  
          AudioPlayer.player.start(as);  
            }  
        catch   (Exception   e)   {
        	System.out.println("DFGHJKL");
        }  
    }  
 
}


你可能感兴趣的:(Java随笔)