import javax.media.*;
import java.net.URL;
public class AudioPlayer {
public static void main(String[] args) {
try {
Player player = Manager.createPlayer(new URL("audio.mp3"));
player.start();
player.prefetch();
player.realize();
player.start();
player.stop();
player.deallocate();
player.close();
} catch (Exception ex) {
ex.printStackTrace();
}
}
}