//you need an au file to do it.
URL url = new URL(
"file://" + System.getProperty("user.dir") + "/src/edu/uchicago/cs/java/lec10/playsounds/snds/samisen.au");
AudioClip clip = Applet.newAudioClip(url);
clip.play();
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();