This is the first time I've implemented sounds but I can't figure out where to actually place the sounds to play them. I am using Eclipse as my IDE and I've put my sounds in a folder called sounds.
The following code is what I've used to create one of the audioclip objects:
private final String background = "." + slash + "sounds" + slash + "background.wav";
main(....){
try {
backgroundClip = Applet.newAudioClip(new File(background).toURI().toURL());
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
I don't hear anything. When I remove the try/catch I get an error saying that it is unable to find the file. I placed my sound folder in both /src and /bin but neither can find it. where do I put it?
String background = "." + slash + ..If the value ofslashis/it is wrong. If the value isSystem.getProperty("file.separator")it should be calledseparator(or something similar). ButFilehas constructors that can do all that for you. 2) Since Java 1.3, the J2SE has offered thatjavax.sound.sampledAPI. Use that instead of anAudioClip. – Andrew Thompson Dec 13 '11 at 3:44