I'm trying to play a mp3 but link it from the local folder (Zoo/src/wolfHowl.mp3) so I could export the project and run it on other computers without changing file link Thanks for help in advanced
protected void howl() {
System.out.println("Howl!!!");
JFXPanel jfxPanel = new JFXPanel(); //needed for MediaPlayer();
String callFile= "File:///C:/Users/Pol/workspace/Zoo/src/wolfHowl.mp3";
Media call= new Media(callFile);
MediaPlayer noiseCreation = new MediaPlayer(call);
noiseCreation.play();
}