Thread java

hammasaidi Messages postés 28 Date d'inscription   Statut Membre Dernière intervention   -  
 marwa.kb -
Bonjour,
j'ai développé un lecteur audio avec java swing mais j'ai une proléme avec le thread qui ne s'arrête pas avec la méthode stop()
voici la méthode actionPerformed
public void actionPerformed(ActionEvent e){
Lecture t = new Lecture();

if(e.getSource().equals(this.b_ouvrir))// bouton ouvrir
{
this.ouvrir();
}
if(e.getSource().equals(this.b_play))// bouton play
{
if(this.fichier == null)
{
this.ouvrir();
this.sound();

t.start();
}
else
{

this.sound();
t.start();
}
}
if(e.getSource().equals(this.b_stop))//bouton stop

{
this.sound();

t.stop();



}

}
merci pour vos aides
A voir également:

2 réponses

marwa.kb
 
J'aurais un examen systeme d'exploitation(thread+java)i
j'ai revisé mais rien compri
0
marwa.kb
 
svp tu peu me donner des exemple pr java thread
0