How can I play an .mp3 and a .wav file in my Java application? I am using Swing. I tried looking on the internet, for something like this example:<
.mp3
.wav
Use this library: import sun.audio.*;
public void Sound(String Path){ try{ InputStream in = new FileInputStream(new File(Path)); AudioStream audios = new AudioStream(in); AudioPlayer.player.start(audios); } catch(Exception e){} }