package com.XXX.xheditor.servlet;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.io.Serializable;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.fileupload.DiskFileUpload;
import org.apache.commons.fileupload.FileItem;
import org.apache.commons.lang.StringUtils;
// xhEditor文件上传的Java - Servlet实现.
// @ author WeiMiao
// @ refer to easinchu
// @ version 2
// @ description 增加html5上传功能的支持
public class UploadFileServlet extends HttpServlet {
private static final long serialVersionUID = 1541334866883495283L;
private static String baseDir = "/UploadFile/"; // 上传文件存储目录
private static String fileExt = "jpg,jpeg,bmp,gif,png";
private static Long maxSize = 0l;
private static String dirType = "1"; // 0:不建目录 1:按天存入目录 2:按月存入目录 3:按扩展名存目录 建议使用按天存
public void init() throws ServletException {
baseDir = this.getInitParameter("baseDir"); //获取web.xml中servlet的配置文件目录参数
if (StringUtils.isEmpty(baseDir)) baseDir = "/UploadFile/"; //获取文件上传存储的相当路径
String realBaseDir = this.getServletConfig().getServletContext().getRealPath(baseDir);
File baseFile = new File(realBaseDir);
if (!baseFile.exists()) {
baseFile.mkdir();
}
fileExt = this.getInitParameter("fileExt"); //获取文件类型参数
if (StringUtils.isEmpty(fileExt)) fileExt = "jpg,jpeg,gif,bmp,png";
String maxSize_str = this.getInitParameter("maxSize"); //获取文件大小参数
if (StringUtils.isNotEmpty(maxSize_str)) {
maxSize = new Long(maxSize_str);
} else {
maxSize = Long.valueOf("5242880"); //5M
}
dirType = this.getInitParameter("dirType"); //获取文件目录类型参数
if (StringUtils.isEmpty(dirType)) dirType = "1";
if (",0,1,2,3,".indexOf("," + dirType + ",") < 0) dirType = "1";
}
// 上传文件数据处理过程
@SuppressWarnings( { "unchecked" })
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html; charset=UTF-8");
response.setHeader("Cache-Control", "no-cache");
String err = "";
String newFileName = "";
if ("application/octet-stream".equals(request.getContentType())) { //HTML 5 上传
try {
String dispoString = request.getHeader("Content-Disposition");
int iFindStart = dispoString.indexOf("name=\"")+6;
int iFindEnd = dispoString.indexOf("\"", iFindStart);
iFindStart = dispoString.indexOf("filename=\"")+10;
iFindEnd = dispoString.indexOf("\"", iFindStart);
String sFileName = dispoString.substring(iFindStart, iFindEnd);
int i = request.getContentLength();
byte buffer[] = new byte[i];
int j = 0;
while(j < i) { //获取表单的上传文件
int k = request.getInputStream().read(buffer, j, i-j);
j += k;
}
if (buffer.length == 0) { //文件是否为空
printInfo(response, "上传文件不能为空", "");
return;
}
if (maxSize > 0 && buffer.length > maxSize) { //检查文件大小
printInfo(response, "上传文件的大小超出限制", "");
return;
}
String filepathString = getSaveFilePath(sFileName, response);
if ("不允许上传此类型的文件".equals(filepathString)) return; //检查文件类型
OutputStream out=new BufferedOutputStream(new FileOutputStream(this.getServletConfig().getServletContext().getRealPath("") + filepathString,true));
out.write(buffer);
out.close();
newFileName = request.getContextPath() + filepathString;
} catch (Exception ex) {
System.out.println(ex.getMessage());
newFileName = "";
err = "错误: " + ex.getMessage();
}
} else {
DiskFileUpload upload = new DiskFileUpload();
try {
List<FileItem> items = upload.parseRequest(request);
Map<String, Serializable> fields = new HashMap<String, Serializable>();
Iterator<FileItem> iter = items.iterator();
while (iter.hasNext()) {
FileItem item = (FileItem) iter.next();
if (item.isFormField())
fields.put(item.getFieldName(), item.getString());
else
fields.put(item.getFieldName(), item);
}
FileItem uploadFile = (FileItem) fields.get("filedata"); //获取表单的上传文件
String fileNameLong = uploadFile.getName(); //获取文件上传路径名称
if (uploadFile.getSize() == 0) { //文件是否为空
printInfo(response, "上传文件不能为空", "");
return;
}
if (maxSize > 0 && uploadFile.getSize() > maxSize) { //检查文件大小
printInfo(response, "上传文件的大小超出限制", "");
return;
}
String filepathString = getSaveFilePath(fileNameLong, response);
if ("不允许上传此类型的文件".equals(filepathString)) return; //检查文件类型
File savefile = new File(this.getServletConfig().getServletContext().getRealPath("") + filepathString);
uploadFile.write(savefile); //存储上传文件
newFileName = request.getContextPath() + filepathString;
} catch (Exception ex) {
System.out.println(ex.getMessage());
newFileName = "";
err = "错误: " + ex.getMessage();
}
}
printInfo(response, err, newFileName);
}
public String getSaveFilePath(String sFileName, HttpServletResponse response) throws IOException {
String extensionName = sFileName.substring(sFileName.lastIndexOf(".") + 1); //获取文件扩展名
if (("," + fileExt.toLowerCase() + ",").indexOf("," + extensionName.toLowerCase() + ",") < 0) { //检查文件类型
printInfo(response, "不允许上传此类型的文件", "");
return "不允许上传此类型的文件";
}
String fileFolder = ""; // 0:不建目录, 1:按天存入目录, 2:按月存入目录, 3:按扩展名存目录.建议使用按天存。
if (dirType.equalsIgnoreCase("1")) fileFolder = new SimpleDateFormat("yyyyMMdd").format(new Date());
if (dirType.equalsIgnoreCase("2")) fileFolder = new SimpleDateFormat("yyyyMM").format(new Date());
if (dirType.equalsIgnoreCase("3")) fileFolder = extensionName.toLowerCase();
String saveDirPath = baseDir + fileFolder + "/"; //文件存储的相对路径
String saveFilePath = this.getServletConfig().getServletContext().getRealPath("") + saveDirPath; //文件存储在容器中的绝对路径
File fileDir = new File(saveFilePath); //构建文件目录以及目录文件
if (!fileDir.exists()) {
fileDir.mkdirs();
}
String filename = UUID.randomUUID().toString(); //重命名文件
return saveDirPath + filename + "." + extensionName;
}
// 使用I/O流输出 json格式的数据
public void printInfo(HttpServletResponse response, String err, String newFileName) throws IOException {
response.setContentType("text/plain");
response.setCharacterEncoding("UTF-8");
PrintWriter out = response.getWriter();
out.println("{\"err\":\"" + err + "\",\"msg\":\"" + newFileName + "\"}");
out.flush();
out.close();
}
}
相关推荐
XHEditor-1.1.9是一个开源的JavaScript组件,它基于HTML5技术,支持多种浏览器环境,包括IE6+、Firefox、Chrome、Safari以及Opera等主流浏览器。这个版本的编辑器优化了多项功能,提升了整体性能,同时保持了良好的...
xheditor-0.9.8-zh-cn.zip 编辑器xheditor-0.9.8-zh-cn.zip 编辑器xheditor-0.9.8-zh-cn.zip 编辑器xheditor-0.9.8-zh-cn.zip 编辑器xheditor-0.9.8-zh-cn.zip 编辑器
5. **安全性**:XHEditor对用户输入的数据进行安全过滤,有效防止XSS攻击,保障了网站的安全性。 三、XHEditor 1.2.2的安装与使用 1. **下载与引入**:首先,你需要从官方或者可靠的源下载xheditor-1.2.2.zip文件...
inflating: zuitu/static/js/xheditor/xheditor_emot/msn/5.gif inflating: zuitu/static/js/xheditor/xheditor_emot/msn/6.gif inflating: zuitu/static/js/xheditor/xheditor_emot/msn/7.gif inflating: zuitu...
xheditor在asp.net中使用时,如果textbox控件在UpdatePanel使用...在本文件在包含完整的xheditor-1.1.13及其demos。在demos文件夹里的Default2.aspx及Default2.aspx.cs是解决textbox控件在UpdatePanel的正常使用方法。
xheditor编辑器.................xheditor编辑器.................xheditor编辑器.................xheditor编辑器.................xheditor编辑器.................
1. **下载与引入**: 下载XHEditor-v1.2.2压缩包,将`xheditor-1.2.2`文件夹内的JavaScript和CSS文件引入到项目中。 2. **初始化编辑器**: 在HTML中创建一个`textarea`元素,并通过JavaScript调用XHEditor进行初始化...
xheditor-1.1.7 编辑器插件 包含xheditor所含关键文件及jquery,导入web工程即可使用
5. **多语言支持**:为了满足全球用户需求,XHEditor内置了多种语言包,包括中文、英文等。 6. **可扩展性**:通过插件机制,开发者可以自定义或添加更多功能,如表情、代码高亮等。 7. **兼容性**:考虑到浏览器...
xhEditor文件上传的Java实现提供了一种灵活、易用的在线富文本编辑器解决方案,支持图片上传、文件上传等多种功能。开发者可以根据需要,选择合适的编辑器插件和参数设置,实现个性化的编辑器功能。
xheditor是一款基于浏览器端的富文本编辑器,支持多种浏览器环境,包括IE6+、Firefox、Chrome、Safari和Opera等。其1.1.6版本是经过多代迭代优化后的一个稳定版本,主要特点是轻量级、易用性强且功能丰富。xheditor...
xhEditor编缉器,用于java开发时,上传文件,同时解决了在火狐上使用时报错的问题,主要是因为火狐上传时使用的是HTML5,如何解决请花1分吧!! 记得把xheditor里的上传改成servlet的路径呀!!
《XHEditor-1.2.1:全能编辑器的深度解析与应用指南》 XHEditor是一款在Web开发中广泛使用的开源富文本编辑器,它以其强大的功能、易用性和高度可定制性赢得了开发者们的青睐。XHEditor-1.2.1是该编辑器的一个稳定...
2. **丰富的编辑功能**:支持文本格式化、字体设置、颜色调整、列表、链接插入、图片上传、表格操作等常见编辑操作,满足日常文档处理需求。 3. **多语言支持**:xheditor不仅支持中文,还提供了英文和其他多语言...
html5Upload:是否开启HTML5上传支持 参数值:true(允许),false(不允许),默认为true允许 说明:本功能需要浏览器支持HTML5上传 备注:1.0.0 Final新添加 upMultiple:允许一次上传多少个文件 参数值:大于0的数值,...
5. **本地上传文件**:支持用户直接在编辑器中上传图片或其他文件,无需跳转页面,简化操作流程。 三、xheditor的使用 1. **引入库文件**:首先需要在HTML页面中引入xheditor的JavaScript和CSS文件,以及必要的语言...
《XHEditor在Java环境下的应用与实践》 XHEditor是一款流行的JavaScript富文本编辑器,它为网页提供了一个强大的文字编辑界面,支持多种格式的输入,如HTML、BBCode等,用户可以方便地进行图文混编,实现所见即所得...
将下载的压缩文件解压缩,上传其中的xheditor-zh-cn.min.js以及xheditor_emot、xheditor_plugins和xheditor_skin三个文件夹到网站相应文件夹中。 注:如果您网站中没有使用jQuery框架,也请一并上传jquery文件夹中的...
【xheditor-1】是一款基于JavaScript的开源富文本编辑器,主要用于网页中的文本编辑功能。这个版本是1.1.5,据描述测试后表现出良好的可用性,开发者认为它非常实用,尤其适合那些对网页设计要求不高的项目。由于其...