1.上傳視頻信息的jsp頁面uploadVideo.jsp <body background="image/bk_hero.jpg"><div id="upld" style="height:300px;width:300px;margin-left: 300px;margin-top: 100px ...
1.上傳視頻信息的jsp頁面uploadVideo.jsp
<body background="image/bk_hero.jpg">
<div id="upld" style="height:300px;width:300px;margin-left: 300px;margin-top: 100px;">
<table>
<!-- form表單用了enctype="multipart/form-data"類型後,所有的值 都是以二進位進行傳遞的 -->
<form action="VideoServlet?method=upVideo" method="post" enctype="multipart/form-data" target="middle">
<tr>
<td style="text-align:center;"colspan="2"><font size="5">上傳課程</font></td>
</tr>
<tr>
<td height="40px"><div style="width:100px">視頻內容:</div></td>
<td><input type="text" name="v_detail" id="v_detail"></td>
</tr>
<tr>
<td height="40px" >上傳視頻:</td>
<td><input type="file" name="v_video" id="v_video"></td>
</tr>
<tr>
<td height="40px">課程名稱:</td>
<td>
<select name="coursename" id="coursename">
<option value="0">請你選擇以下數據</option>
<c:forEach items="${list_displaycourse_name}" var ="course">
<option value="${course.c_name}">${course.c_name}</option>
</c:forEach>
</select>
</td>
</tr>
<tr>
<td height="40px">課程代號:</td>
<td>
<select name="c_id" id="c_id">
<option value="0">請你選擇以下數據</option>
<c:forEach items="${list_displaycourse_name}" var ="course">
<option value="${course.c_id}">${course.c_id}</option>
</c:forEach>
</select>
</td>
</tr>
<tr>
<td><input type="reset" value="重置"></td>
<td style="padding-left:100px"><input type="submit" value="上傳"></td>
</tr>
</form>
</table>
</div>
</body>
2.xyadmin.jsp裡面查看已上傳視頻
<div style="height:100px"><a href="VideoServlet?method=displayVideo" target="middle">查看已上傳視頻</a></div>
3.顯示視頻信息頁面displayVideo
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="http://lib.sinaapp.com/js/jquery/1.9.1/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="js/displayvideo.js"></script>
<title>顯示視頻</title>
</head>
<body>
<table border="0"cellspacing="0" cellpadding="0">
<tr>
<td style="width:50px;text-align: center">序號</td>
<td style="width:100px;text-align: center">視頻內容</td>
<td style="text-align: center">視頻</td>
<td style="text-align: center">課程代號</td>
<td style="width:100px;text-align: center">課程名稱</td>
</tr>
<c:forEach items="${list_displayVideo}" var="video" varStatus="i">
<tr style="background: #FAEBD7">
<td style="width:50px;text-align: center">${i.count} </td>
<td style="text-align: center"><font style="font-size:12px;">${video.v_detail}</font></td>
<td style="text-align: center">
<div id="box">
<video id="video" controls preload="auto" width="100px" height="50px">
<source src="upload/${video.v_path}" type="video/mp4">
</video>
</div>
</td>
<td style="width:100px;text-align: center">${video.c_id}</td>
<td style="width:100px;text-align: center">${video.c_name}</td>
</tr>
</c:forEach>
</table>
</body>
</html>
播放腳本displayvideo.js
播放視頻
*/
layer.open({
type: 1,
title: false,
shadeClose: true,
area: ['400px', '350px'],
content: $('#box'),
success: function(layero){
//layer樣式layer-anim導致全屏樣式錯亂,移除該樣式即可
setTimeout(function() {
$(layero).removeClass('layer-anim');
}, 0);
}
});
後臺VideoServlet
public void upload(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String filename = null;
// 獲得磁碟文件條目工廠
DiskFileItemFactory factory = new DiskFileItemFactory();
// 獲取文件需要上傳到的路徑
String path = request.getRealPath("/upload");
// 如果沒以下兩行設置的話,上傳大的 文件 會占用 很多記憶體,
// 設置暫時存放的 存儲室 , 這個存儲室,可以和 最終存儲文件 的目錄不同
/**
* 原理 它是先存到 暫時存儲室,然後在真正寫到 對應目錄的硬碟上, 按理來說 當上傳一個文件時,其實是上傳了兩份,第一個是以 .tem
* 格式的 然後再將其真正寫到 對應目錄的硬碟上
*/
factory.setRepository(new File(path));
// 設置 緩存的大小,當上傳文件的容量超過該緩存時,直接放到 暫時存儲室
factory.setSizeThreshold(1024 * 1024);
// 高水平的API文件上傳處理
ServletFileUpload upload = new ServletFileUpload(factory);
InputStream in =null;
byte[] buf=null;//位元組數組表示照片
try {
// 可以上傳多個文件
List<FileItem> list = (List<FileItem>) upload.parseRequest(request);
for (FileItem item : list) {
// 獲取表單的屬性名字
String name = item.getFieldName();// title
// 如果獲取的 表單信息是普通的 文本 信息
if (item.isFormField()) {
// 獲取用戶具體輸入的字元串 ,名字起得挺好,因為表單提交過來的是 字元串類型的,表示表單的普通文本,如下拉列表,文本框,密碼框等
String value = item.getString("UTF-8");// title content
request.setAttribute(name, value);
}
// 對傳入的非 簡單的字元串進行處理 ,比如說二進位的 圖片,電影這些
else {
/**
* 以下三步,主要獲取 上傳文件的名字,表示文本是上傳控制項
* 名字採用隨機的方式設置的
*/
// 獲取路徑名
String value = item.getName();
String suffix = value.substring(value.lastIndexOf("."));
filename = "pro"+String.valueOf(((new Date()).getTime())%10000000)+suffix;
request.setAttribute(name, filename);
// 真正寫到磁碟上
// 它拋出的異常 用exception 捕捉
// item.write( new File(path,filename) );//第三方提供的
// 手動寫的,是將我電腦里的照片寫在我伺服器建立的upload文件夾下下麵
OutputStream out = new FileOutputStream(new File(path,
filename));
in = item.getInputStream();
int length = 0;
buf = new byte[1024];//讀1024個位元組
System.out.println("獲取上傳文件的總共的容量:" + item.getSize());
// in.read(buf) 每次讀到的數據存放在 buf 數組中
while ((length = in.read(buf)) != -1) {
// 在 buf 數組中 取出數據 寫到 (輸出流)磁碟上
out.write(buf, 0, length);
}
in.close();
out.close();
}
}
} catch (FileUploadException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
String v_detail=request.getAttribute("v_detail").toString();
String coursename=request.getAttribute("coursename").toString();
int c_id=Integer.parseInt(request.getAttribute("c_id").toString());
Video video=new Video();
video.setV_detail(v_detail);
video.setC_id(c_id);
video.setV_path(filename);
boolean flag=videoService.uploadVideo(video);
if(flag){
request.getRequestDispatcher("xyadmin.jsp").forward(request, response);
}else{
request.getRequestDispatcher("uploadVideo.jsp").forward(request, response);
}
}
/**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String method=request.getParameter("method");
if("upVideo".equals(method)){
upload(request,response);
}else if("displayVideo".equals(method)){
List<VideoLink> listVideo=videoService.displayVideo();
request.setAttribute("list_displayVideo", listVideo);
request.getRequestDispatcher("displayVideo.jsp").forward(request, response);
}
}