如何停止播放?

时间:2014-09-03 10:47:14

标签: java

public class Jxplay extends Thread {

File f;

public Jxplay(File f){

    this.f=f;

}

public void run(){

    try{
        FileInputStream fis = new FileInputStream(f);
        Player jx = new Player(fis);
        jx.play();

    }
    catch(Exception e){
        e.printStackTrace();
    }
}

}

如何停止播放?

0 个答案:

没有答案