This code does not work. I took a class ready since it can be found here, but the music does not work. How can I fix this?
private void lblCliqueMouseClicked(java.awt.event.MouseEvent evt){
lblClique.setText("achou");
musica = new Som();
boolean repetir = false;
FileInputStream arquivo = null;
try {
arquivo = new FileInputStream("musica.mp3");
} catch (FileNotFoundException ex) {
Logger.getLogger(TelaProjeto.class.getName()).log(Level.SEVERE, null, ex);
}
musica.tocar(arquivo, repetir);
}