URL url = new URL( "file:" + System.getProperty( "user.dir" ) + System.getProperty( "file.separator" ) + args[0] ); System.out.println( "Playing : " + url ); AudioClip au = Applet.newAudioClip( url ); au.play(); Thread.sleep(10000);