Desain seperti pada gambar
Coding tombol Browse :
JFileChooser fc= new JFileChooser();
JFrame jf=new JFrame();
int ret = fc.showOpenDialog(jf.add(fc));
if(ret==JFileChooser.APPROVE_OPTION) {
File file=fc.getSelectedFile();
text=file.getPath().toString();
jTextField2.setText(text);
}
Coding tombol PLAY:
if(evt.getActionCommand().equals("PLAY")){
try{
player = Manager.createPlayer(new URL("file",null,text));
player.start();
} catch(Exception ex){}
Coding tombol STOP:
player.stop();
Saat di klik tombol Browse maka akan muncul file open,untuk mencari file MP3 yang akan di-PLAY.
Kemudian open,maka file MP3 siap di-PLAY.
04.25 |
Category:
Applet
|
0
komentar
Comments (0)