实现视频在线播放.zip
java后端代码: @RequestMapping("/outputVideo") public void getVideo(HttpServletRequest request,HttpServletResponse response,@RequestParam("path")String videoPath) throws IOException { System.out.println("来请求了!路径:"+videoPath); //1.创建地址 URL readUrl = new URL("file:///"+videoPath); //2.创建连接对象; UR
用户评论