kindEditor文件上传

2024-05-26 02:18
文章标签 上传 kindeditor

本文主要是介绍kindEditor文件上传,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


public class KindeditorController {


// 定义允许上传的文件扩展名
private static Map<String, String> extMap = new HashMap<String, String>();
static {
extMap.put("image", "gif,jpg,jpeg,png,bmp");
extMap.put("flash", "swf,flv");
extMap.put("media", "swf,flv,mp3,wav,wma,wmv,mid,avi,mpg,asf,rm,rmvb");
extMap.put("file", "doc,docx,xls,xlsx,ppt,htm,html,txt,zip,rar,gz,bz2");
}


// 最大文件大小
long maxSize = 1000000;


@RequestMapping("editor")
public String kindEditor() {
return "kindEditor";
}


/*
* 文件上传

* @param request

* @param response

* @return

* @throws FileUploadException

* @throws IOException 2013-10-11
*/
@ResponseBody
@RequestMapping("uploadJson")
public Map<String, Object> uploadJson(HttpServletRequest request, HttpServletResponse response)
throws FileUploadException, IOException {
response.setContentType("text/html; charset=UTF-8");

Map<String, Object> result = Maps.newHashMap();


// 文件保存目录路径
String savePath = this.getSysPath();


if (!ServletFileUpload.isMultipartContent(request)) {
result.put("message", "请选择文件.");
return result;
}
// 检查目录
File uploadDir = new File(savePath);
if (!uploadDir.isDirectory()) {
result.put("message", "上传目录不存在.");
return result;
}
// 检查目录写权限
if (!uploadDir.canWrite()) {
result.put("message", "上传目录没有写权限.");
return result;
}


String dirName = request.getParameter("dir");
if (dirName == null) {
dirName = "image";
}
if (!extMap.containsKey(dirName)) {
result.put("message", "请选择其他格式文件上传.");
return result;
}
// 创建文件夹
savePath += dirName + "/";
File saveDirFile = new File(savePath);
if (!saveDirFile.exists()) {
saveDirFile.mkdirs();
}
try {
// 设置上下方文
CommonsMultipartResolver multipartResolver = new CommonsMultipartResolver(request
.getSession().getServletContext());


// 检查form是否有enctype="multipart/form-data"
if (multipartResolver.isMultipart(request)) {
MultipartHttpServletRequest multiRequest = (MultipartHttpServletRequest) request;


Iterator<String> iter = multiRequest.getFileNames();
while (iter.hasNext()) {


// 由CommonsMultipartFile继承而来,拥有上面的方法.
MultipartFile file = multiRequest.getFile(iter.next());
if (file != null) {
// 检查文件大小
if (file.getSize() > maxSize) {
result.put("message", "上传文件大小超过限制.");
return result;
} else {
// 检查扩展名
String fileName = file.getOriginalFilename();
String fileExt = fileName.substring(fileName.lastIndexOf(".") + 1)
.toLowerCase();
if (!Arrays.<String> asList(extMap.get(dirName).split(",")).contains(
fileExt)) {
result.put("message",
"上传文件扩展名是不允许的扩展名。\n只允许" + extMap.get(dirName) + "格式.");
return result;
} else {
try {
File uploadedFile = new File(savePath, fileName);
file.transferTo(uploadedFile);
result.put("message", "上传成功.");
} catch (Exception e) {
result.put("message", "上传文件失败.");
return result;
}
}


}
}
}
} else {
result.put("message", "上传失败.");
return result;
}
} catch (Exception e) {
result.put("message", "上传失败.");
return result;
}
return result;
}


 
/*
* 获取根目录

* @return 2013-10-12
*/
private String getSysPath() {
String sysPath = KindeditorController.class.getResource("/").getPath();
String str = sysPath.substring(0, sysPath.length() - 1);
String savePath = str.substring(0, str.lastIndexOf("/") - 6)
+ "attached/";
return savePath;
}


/*
* 文件管理

* @param request

* @param response

* @return

* @throws IOException 2013-10-11
*/
@ResponseBody
@RequestMapping(value = "fileManagerJson")
public String fileManagerJson(HttpServletRequest request, HttpServletResponse response)
throws IOException {
// 根目录路径
String rootPath = this.getSysPath();


// 根目录URL
String rootUrl = request.getContextPath()+"/src/main/webapp/static/attached/";
// 图片扩展名
String[] fileTypes = new String[] { "gif", "jpg", "jpeg", "png", "bmp" };


String dirName = request.getParameter("dir");
Map<String, Object> result = Maps.newHashMap();
if (dirName != null) {
if (!Arrays.<String> asList(new String[] { "image", "flash", "media", "file" })
.contains(dirName)) {
return "无效的目录名称.";
}
rootPath += dirName + "/";
rootUrl += dirName + "/";
File saveDirFile = new File(rootPath);
if (!saveDirFile.exists()) {
saveDirFile.mkdirs();
}
}
// 根据path参数,设置各路径和URL
String path = request.getParameter("path") != null ? request.getParameter("path") : "";
String currentPath = rootPath + path;
String currentUrl = rootUrl + path;
String currentDirPath = path;
String moveupDirPath = "";
if (!"".equals(path)) {
String str = currentDirPath.substring(0, currentDirPath.length() - 1);
moveupDirPath = str.lastIndexOf("/") >= 0 ? str.substring(0, str.lastIndexOf("/") + 1)
: "";
}


// 排序形式,name or size or type
String order = request.getParameter("order") != null ? request.getParameter("order")
.toLowerCase() : "name";


// 不允许使用..移动到上一级目录
if (path.indexOf("..") >= 0) {
return "不允许此类访问方式.";
}
// 最后一个字符不是/
if (!"".equals(path) && !path.endsWith("/")) {
return "参数无效.";
}
// 目录不存在或不是目录
File currentPathFile = new File(currentPath);
if (!currentPathFile.isDirectory()) {
return "目录不存在.";
}


// 遍历目录取的文件信息
@SuppressWarnings("rawtypes")
List<Hashtable> fileList = Lists.newArrayList();
if (currentPathFile.listFiles() != null) {
for (File file : currentPathFile.listFiles()) {
Hashtable<String, Object> hash = new Hashtable<String, Object>();
String fileName = file.getName();
if (file.isDirectory()) {
hash.put("is_dir", true);
hash.put("has_file", (file.listFiles() != null));
hash.put("filesize", 0L);
hash.put("is_photo", false);
hash.put("filetype", "");
} else if (file.isFile()) {
String fileExt = fileName.substring(fileName.lastIndexOf(".") + 1)
.toLowerCase();
hash.put("is_dir", false);
hash.put("has_file", false);
hash.put("filesize", file.length());
hash.put("is_photo", Arrays.<String> asList(fileTypes).contains(fileExt));
hash.put("filetype", fileExt);
}
hash.put("filename", fileName);
hash.put("datetime",
new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(file.lastModified()));
fileList.add(hash);
}
}


if ("size".equals(order)) {
Collections.sort(fileList, new SizeComparator());
} else if ("type".equals(order)) {
Collections.sort(fileList, new TypeComparator());
} else { //"name".equals(order)
Collections.sort(fileList, new NameComparator());
}
result.put("moveup_dir_path", moveupDirPath);
result.put("current_dir_path", currentDirPath);
result.put("current_url", currentUrl);
result.put("total_count", fileList.size());
result.put("file_list", fileList);


response.setContentType("application/json; charset=UTF-8");
return JsonMapper.alwaysMapper().toJson(result);
}


/*
* 根据文件名称排序
*/
public class NameComparator implements Comparator<Object> {
public int compare(Object a, Object b) {
@SuppressWarnings("rawtypes")
Hashtable hashA = (Hashtable) a;
@SuppressWarnings("rawtypes")
Hashtable hashB = (Hashtable) b;
if (((Boolean) hashA.get("is_dir")) && !((Boolean) hashB.get("is_dir"))) {
return -1;
} else if (!((Boolean) hashA.get("is_dir")) && ((Boolean) hashB.get("is_dir"))) {
return 1;
} else {
return ((String) hashA.get("filename")).compareTo((String) hashB.get("filename"));
}
}
}


/*
* 根据文件大小排序
*/
public class SizeComparator implements Comparator<Object> {
public int compare(Object a, Object b) {
@SuppressWarnings("rawtypes")
Hashtable hashA = (Hashtable) a;
@SuppressWarnings("rawtypes")
Hashtable hashB = (Hashtable) b;
if (((Boolean) hashA.get("is_dir")) && !((Boolean) hashB.get("is_dir"))) {
return -1;
} else if (!((Boolean) hashA.get("is_dir")) && ((Boolean) hashB.get("is_dir"))) {
return 1;
} else {
if (((Long) hashA.get("filesize")) > ((Long) hashB.get("filesize"))) {
return 1;
} else if (((Long) hashA.get("filesize")) < ((Long) hashB.get("filesize"))) {
return -1;
} else {
return 0;
}
}
}
}


/*
* 根据文件类型排序
*/
public class TypeComparator implements Comparator<Object> {
public int compare(Object a, Object b) {
@SuppressWarnings("rawtypes")
Hashtable hashA = (Hashtable) a;
@SuppressWarnings("rawtypes")
Hashtable hashB = (Hashtable) b;
if (((Boolean) hashA.get("is_dir")) && !((Boolean) hashB.get("is_dir"))) {
return -1;
} else if (!((Boolean) hashA.get("is_dir")) && ((Boolean) hashB.get("is_dir"))) {
return 1;
} else {
return ((String) hashA.get("filetype")).compareTo((String) hashB.get("filetype"));
}
}
}
 
}

这篇关于kindEditor文件上传的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1003273

相关文章

Java文件上传的多种实现方式

《Java文件上传的多种实现方式》文章主要介绍了文件上传接收接口的使用方法,包括获取文件信息、创建文件夹、保存文件到本地的两种方法,以及如何使用Postman进行接口调用... 目录Java文件上传的多方式1.文件上传接收文件接口2.接口主要内容部分3.postman接口调用总结Java文件上传的多方式1

使用Python实现大文件切片上传及断点续传的方法

《使用Python实现大文件切片上传及断点续传的方法》本文介绍了使用Python实现大文件切片上传及断点续传的方法,包括功能模块划分(获取上传文件接口状态、临时文件夹状态信息、切片上传、切片合并)、整... 目录概要整体架构流程技术细节获取上传文件状态接口获取临时文件夹状态信息接口切片上传功能文件合并功能小

Spring MVC 图片上传

引入需要的包 <dependency><groupId>commons-logging</groupId><artifactId>commons-logging</artifactId><version>1.1</version></dependency><dependency><groupId>commons-io</groupId><artifactId>commons-

在SSH的基础上使用jquery.uploadify.js上传文件

在SSH框架的基础上,使用jquery.uploadify.js实现文件的上传,之前搞了好几天,都上传不了, 在Action那边File接收到的总是为null, 为了这个还上网搜了好多相关的信息,但都不行,最后还是搜到一篇文章帮助到我了,希望能帮助到为之困扰的人。 jsp页面的关键代码: <link rel="stylesheet" type="text/css" href="${page

【CTF Web】BUUCTF Upload-Labs-Linux Pass-13 Writeup(文件上传+PHP+文件包含漏洞+PNG图片马)

Upload-Labs-Linux 1 点击部署靶机。 简介 upload-labs是一个使用php语言编写的,专门收集渗透测试和CTF中遇到的各种上传漏洞的靶场。旨在帮助大家对上传漏洞有一个全面的了解。目前一共20关,每一关都包含着不同上传方式。 注意 1.每一关没有固定的通关方法,大家不要自限思维! 2.本项目提供的writeup只是起一个参考作用,希望大家可以分享出自己的通关思路

Vue3上传图片报错:Current request is not a multipart request

当你看到错误 "Current request is not a multipart request" 时,这通常意味着你的服务器或后端代码期望接收一个 multipart/form-data 类型的请求,但实际上并没有收到这样的请求。在使用 <el-upload> 组件时,如果你已经设置了 http-request 属性来自定义上传行为,并且遇到了这个错误,可能是因为你在发送请求时没有正确地设置

OpenStack:Glance共享与上传、Nova操作选项解释、Cinder操作技巧

目录 Glance member task Nova lock shelve rescue Cinder manage local-attach transfer backup-export 总结 原作者:int32bit,参考内容 从2013年开始折腾OpenStack也有好几年的时间了。在使用过程中,我发现有很多很有用的操作,但是却很少被提及。这里我暂不直接

使用http-request 属性替代action绑定上传URL

在 Element UI 的 <el-upload> 组件中,如果你需要为上传的 HTTP 请求添加自定义的请求头(例如,为了通过身份验证或满足服务器端的特定要求),你不能直接在 <el-upload> 组件的属性中设置这些请求头。但是,你可以通过 http-request 属性来自定义上传的行为,包括设置请求头。 http-request 属性允许你完全控制上传的行为,包括如何构建请求、发送请

Vue3图片上传报错:Required part ‘file‘ is not present.

错误 "Required part 'file' is not present" 通常表明服务器期望在接收到的 multipart/form-data 请求中找到一个名为 file 的部分(即文件字段),但实际上没有找到。这可能是因为以下几个原因: 请求体构建不正确:在发送请求时,可能没有正确地将文件添加到 FormData 对象中,或者使用了错误的字段名。 前端代码错误:在前端代码中,可能

【SpringMVC学习06】SpringMVC中实现文件上传

1. 环境准备 springmvc上传文件的功能需要两个jar包的支持,如下 2. 单个文件的上传 2.1 前台页面 简单的写一下前台页面,注意一点的是form表单中别忘了写enctype=”multipart/form-data”属性: <tr><td>商品图片</td><td><c:if test="${itemsCustom.pic !=null}"><img src="/f