如题
------解决方案--------------------
JMF(Java Media Framework):
位于JMF提供的多媒体包为:javax.media。支持 AIFF, AU, AVI, GSM, MIDI, MPEG, QuickTime, RMF 和 WAV等格式的文件. 在Sun公司的网站下载并安装Jmf2.1
1、创建一个播放器(Player)
Player类:在javax.media包中,使用该包中的Manager类调用createPlayer()方法创建播放器。
1)对于Applet小程序,创建播放器如下:
try{ URL url=new URL(getDocumentBase(), ××.avi);
Player player=Manager.createPlayer(url);
}catch(IOException e){ }
2)对于Application程序,创建播放器如下:
try{ File file=new file(“××.avi”):
URL url=file.toURL;
Player player=Manager.createPlayer(url);
}catch(IOException e){ }