zoukankan      html  css  js  c++  java
  • java调用播放器并播放视频

    package com.servlet;
    
    import java.io.IOException;
    import java.io.PrintWriter;
    
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    
    public class OpenExe extends HttpServlet {
    
    	//打开本地播放器并播放视频
    	public static void openExe(String file) {
    		Runtime rn = Runtime.getRuntime();
    		Process p = null;
    		try {
    			p = rn.exec("D:/The entertainment software/QvodPlayer/QvodPlayer.exe "+file);
    		} catch (Exception e) {
    			System.out.println("Error exec!");
    		}
    	}
    	
    	//打开本地播放器并播放视频
    		public static void openExe1() {
    			Runtime rn = Runtime.getRuntime();
    			Process p = null;
    			try {
    				p = rn.exec(""D:/The entertainment software/QvodPlayer/QvodPlayer.exe" F:/movie and mv/11.f4v");
    			} catch (Exception e) {
    				System.out.println("Error exec!");
    			}
    		}
    
    
    	public void doGet(HttpServletRequest request, HttpServletResponse response)
    			throws ServletException, IOException {
    		this.doPost(request, response);
    		/*openExe1();*/
    	}
    
    	public void doPost(HttpServletRequest request, HttpServletResponse response)
    			throws ServletException, IOException {
    		String bofile =request.getParameter("file");
    		openExe(bofile);
    	}
    
    }
    

    网页

    <form action="<%=basePath%>/servlet/OpenExe" method="post">
    		<input type="hidden" id="file" name ="file" value=" F:/movie and mv/abc.mp4">
    		<input type="submit" value="运行">
    
    	</form>
    
    	<form action="<%=basePath%>/servlet/OpenExe" method="post">
    	<input type="hidden" id="file" name ="file" value=" F:/movie and mv/11.f4v">
    		<input type="submit" value="运行2">
    
    	</form>



    在播放器地址后面一定要跟个空格

    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    【工具类】Stream流构建指定长度的时间集合
    【Java】 Java中的浅拷贝和深拷贝
    【网络协议】 TCP三次握手的流程
    【工具库】Java实体映射工具MapStruct
    【并发编程】Java中的锁有哪些?
    【ORM】Mybatis与JPA的区别
    【并发编程】ThreadLocal
    【SpringBoot】SpringBoot 处理后端返回的小数(全局配置 + 定制化配置)
    实战开发三步走
    项目:jSon和Ajax登录功能
  • 原文地址:https://www.cnblogs.com/shipeng22022/p/4614012.html
Copyright © 2011-2022 走看看