2010-12-09 9 views

Antwort

1

können Sie diese verwenden, um eine .mp3 oder .wav-Datei

Player p; 
InputStream is = getClass().getResourceAsStream(SoundName[sound]); 
     try { 
      p = Manager.createPlayer(is, "audio/X-wav"); 
      p.start(); 
      is.close(); 
      is = null; 
     } catch (IOException ex) { 
      ex.printStackTrace(); 
     } catch (MediaException ex) { 
      ex.printStackTrace(); 
     } 

p.setLoopCount(100);//using this you can play the sound in loop 
spielen