使用字节流在客户端Web浏览器上的服务器上播放视频

时间:2013-03-11 15:16:34

标签: java html jsp

我想在网络浏览器中播放视频。 下面的HTML代码在Google crome中工作正常,但在IE和Firefox中不起作用。 我从服务器上的c:/获取一个.avi文件,并将其转换为字节流并将字节作为响应发送。

在这里输入代码

 <html>
    <body>
    <object id="MediaPlayer" width="192" height="146" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components..." type="application/x-oleobject">
    <param name="SRC" value="dg">                
    <param name="ShowControls" value="false">
    <param name="ShowStatusBar" value="false">
    <param name="ShowDisplay" value="false">
    <param name="autostart" value="true">
    <embed type="application/x-mplayer2" src="http://125.60.35.36:8888/sa/jsp/common/showVideo.jsp?path=library/2013/Video/sample_1362996503283.avi" name="MediaPlayer" width="400" height="300" showcontrols="1" showstatusbar="0" showdisplay="0" autostart="0"> 
   </object>
   </body>
   </html>

在这里输入代码

String filePath = "c:/sa/documents/"+request.getParameter("path");
System.out.println(filePath);
InputStream is=new FileInputStream(filePath);
OutputStream os=response.getOutputStream();
//OutputStream os=new FileOutputStream("c:/test.avi");
byte b[]=IOUtils.toByteArray(is);
os.write(b,0,b.length);
os.close();
is.close();

0 个答案:

没有答案