import javax.media.*;
import java.io.File;
public class AudioPlayer {
public static void main(String[] args) throws Exception {
File audioFile = new File("path/to/audio/file.wav");
MediaLocator mediaLocator = new MediaLocator(audioFile.toURI().toURL());
Player player = Manager.createPlayer(mediaLocator);
player.start();
player.prefetch();
player.realize();
player.waitToEnd();
}
}