首页>代码>webuploader+bootstrap实现文件断点分片并发上传实例2(前端一些优化和遇到的问题总结)>/webuploader/src/com/cn/upload/UploadVideo.java
package com.cn.upload; import java.io.File; import java.io.IOException; import java.util.List; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.fileupload.FileItem; import org.apache.commons.fileupload.FileUploadException; import org.apache.commons.fileupload.disk.DiskFileItemFactory; import org.apache.commons.fileupload.servlet.ServletFileUpload; import org.apache.commons.io.FileUtils; /** * 文件上传 * @author Administrator * */ @SuppressWarnings("serial") public class UploadVideo extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { super.doGet(req, resp); doPost(req, resp); } public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { DiskFileItemFactory factory = new DiskFileItemFactory(); ServletFileUpload sfu = new ServletFileUpload(factory); sfu.setHeaderEncoding("utf-8"); String savePath = this.getServletConfig().getServletContext() .getRealPath(""); String folad = "uploads"; savePath = savePath + "\\" + folad + "\\"; String fileMd5 = null; String chunk = null; try { List<FileItem> items = sfu.parseRequest(request); for (FileItem item : items) { if (item.isFormField()) { String fieldName = item.getFieldName(); if (fieldName.equals("fileMd5")) { fileMd5 = item.getString("utf-8"); } if (fieldName.equals("chunk")) { chunk = item.getString("utf-8"); } } else { File file = new File(savePath + "/" + fileMd5); if (!file.exists()) { file.mkdir(); } File chunkFile = new File(savePath + "/" + fileMd5 + "/" + chunk); FileUtils.copyInputStreamToFile(item.getInputStream(), chunkFile); } } } catch (FileUploadException e) { e.printStackTrace(); } } }
最近下载更多
a251406968 LV1
2023年10月20日
taoshen95 LV15
2022年4月13日
李海洋 LV12
2021年11月29日
240598911 LV10
2021年11月9日
wu000000
2021年7月21日
暂无贡献等级
darling007 LV1
2021年5月8日
sun丶孙 LV8
2021年3月28日
527826533 LV10
2021年1月12日
sunwenbin_789 LV3
2021年1月4日
Randson LV1
2020年12月15日
最近浏览更多
a251406968 LV1
2023年10月20日
Niderongyan LV9
2023年5月26日
201601070152 LV3
2022年12月6日
随便001
2022年11月25日
暂无贡献等级
wanglinddad LV55
2022年4月15日
taoshen95 LV15
2022年4月13日
李海洋 LV12
2021年11月29日
红茶馆 LV5
2021年11月24日
240598911 LV10
2021年11月9日
justinsx LV1
2021年11月3日