当前位置: 代码迷 >> Eclipse >> 求eclipse如何搭建JMF SWT的作用
  详细解决方案

求eclipse如何搭建JMF SWT的作用

热度:47   发布时间:2016-04-23 12:24:19.0
求eclipse怎么搭建JMF SWT的作用
如题  


------解决方案--------------------
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){ }
  相关解决方案