I am trying to run the music that I have, but it does not work. There is no error showing up in the eclipse any more, but the sound is not played. This is my code that I have
public class Music extends Thread {
private Player player;
private boolean isLoop;
private File file;
private FileInputStream fis;
private BufferedInputStream bis;
public Music(String name, boolean isLoop)
{
try {
this.isLoop = isLoop;
//Find the link to the file and play, save the file to the buffer
file = new File(Main.class.getResource("/music/" + name).toURI());
fis = new FileInputStream(file);
bis = new BufferedInputStream(fis);
player = new Player(bis);
} catch(Exception e){
System.out.println("No music");
}
}
//Get the time of the music, how long it is played
public int getTime() {
if(player == null)
{
return 0;
}
return player.getPosition();
}
//Stop the music played
public void close() {
isLoop = false;
player.close();
this.interrupt();
}
@Override
public void run() {
try {
player.play();
do {
player.play();
fis = new FileInputStream(file);
bis = new BufferedInputStream(fis);
player = new Player(bis);
} while(isLoop);
} catch(Exception e) {
System.out.println(e.getMessage());
}
}
}
Thank you for the help
Your problem starts here ->
file = new File(Main.class.getResource("/music/" + name).toURI());
An embedded resource can't be reference as a
File
, because, well, it's not. Instead useClass#getResourceAsStream
directly.Next, you should avoid extending from
Thread
, thread's are not re-entrant, that is, once stopped, you can't restart them. Instead, implementRunnable
, for example...