SpringMVC中如何实现KindEditor在线编辑器的文件上传功能示例?

2026-06-10 17:567阅读0评论SEO基础
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计1074个文字,预计阅读时间需要5分钟。

SpringMVC中如何实现KindEditor在线编辑器的文件上传功能示例?

最近几个项目都需要用到在线编辑器,之前都在PHP上使用,但Java的Spring MVC框架下似乎并不像PHP那样简单。搜集了很多资料和文章,但效果都不理想,最后在找到了解决方案。

最近几个项目都要用到在线编辑器,由于之前做在线编辑器都只在php上,对于用java尤其是springmvc框架时,似乎并不如PHP那么简单,搜集了很多博文和资料,全部都不能达到效果,最后在参考各种资料后,自己花时间写了一个上传图片的控制器,亲测保证能用。

1.图片上传控制器

SpringMVC中如何实现KindEditor在线编辑器的文件上传功能示例?

package com.xishan.yueke.view.system; import java.io.File; import java.io.IOException; import java.io.PrintWriter; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.Date; import java.util.HashMap; import java.util.Hashtable; import java.util.List; import java.util.Map; import java.util.Random; import javax.servlet.www.yoursite.com/attached/ String rootUrl = request.getContextPath() + PATH_LINE+"kindeditor"+PATH_LINE+"attached"+PATH_LINE; response.setContentType("application/json; charset=UTF-8"); PrintWriter out = response.getWriter(); //图片扩展名 String[] fileTypes = new String[]{"gif", "jpg", "jpeg", "png", "bmp"}; String dirName = request.getParameter("dir"); if (dirName != null) { if(!Arrays.<String>asList(new String[]{"image", "flash", "media", "file"}).contains(dirName)){ out.print("无效的文件夹。"); out.close(); return; } rootPath += dirName + PATH_LINE; rootUrl += dirName + PATH_LINE; 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(PATH_LINE) >= 0 ? str.substring(0, str.lastIndexOf(PATH_LINE) + 1) : ""; } //排序形式,name or size or type String order = request.getParameter("order") != null ? request.getParameter("order").toLowerCase() : "name"; //不允许使用..移动到上一级目录 if (path.indexOf("..") >= 0) { out.print("访问权限拒绝。"); out.close(); return; } //最后一个字符不是/ if (!"".equals(path) && !path.endsWith(PATH_LINE)) { out.print("无效的访问参数验证。"); out.close(); return; } //目录不存在或不是目录 File currentPathFile = new File(currentPath); if(!currentPathFile.isDirectory()){ out.print("文件夹不存在。"); out.close(); return; } //遍历目录取的文件信息 List<Map<String, Object>> fileList = new ArrayList<Map<String, Object>>(); 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 { Collections.sort(fileList, new NameComparator()); } JSONObject result = new JSONObject(); 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); out.println(result.toJSONString()); out.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } private class NameComparator implements Comparator<Map<String, Object>> { public int compare(Map<String, Object> hashA, Map<String, Object> hashB) { 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")); } } } private class SizeComparator implements Comparator<Map<String, Object>> { public int compare(Map<String, Object> hashA, Map<String, Object> hashB) { 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; } } } } private class TypeComparator implements Comparator<Map<String, Object>> { public int compare(Map<String, Object> hashA, Map<String, Object> hashB) { 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")); } } } }

2.jsp页面使用方法(在head加入下面代码,替换名为description的编辑区,在此之前需导入kindeditor的相关文件,详见官方文档)

<script type="text/javascript"> KindEditor.ready(function(K) { K.create('textarea[name="descript"]', { uploadJson : 'localhost:8080/Test/fileUpload.htm', fileManagerJson : 'localhost:8080/Test/fileManager.htm', allowFileManager : true, allowImageUpload : true, autoHeightMode : true, width : "640px", height : "400px", afterCreate : function() {this.loadPlugin('autoheight');}, afterBlur : function(){ this.sync(); } //Kindeditor下获取文本框信息 }); }); </script>

使用其他的框架(比如Spring+Struts+Hibernate)方法大致相同,最终效果如下:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持自由互联。

本文共计1074个文字,预计阅读时间需要5分钟。

SpringMVC中如何实现KindEditor在线编辑器的文件上传功能示例?

最近几个项目都需要用到在线编辑器,之前都在PHP上使用,但Java的Spring MVC框架下似乎并不像PHP那样简单。搜集了很多资料和文章,但效果都不理想,最后在找到了解决方案。

最近几个项目都要用到在线编辑器,由于之前做在线编辑器都只在php上,对于用java尤其是springmvc框架时,似乎并不如PHP那么简单,搜集了很多博文和资料,全部都不能达到效果,最后在参考各种资料后,自己花时间写了一个上传图片的控制器,亲测保证能用。

1.图片上传控制器

SpringMVC中如何实现KindEditor在线编辑器的文件上传功能示例?

package com.xishan.yueke.view.system; import java.io.File; import java.io.IOException; import java.io.PrintWriter; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.Date; import java.util.HashMap; import java.util.Hashtable; import java.util.List; import java.util.Map; import java.util.Random; import javax.servlet.www.yoursite.com/attached/ String rootUrl = request.getContextPath() + PATH_LINE+"kindeditor"+PATH_LINE+"attached"+PATH_LINE; response.setContentType("application/json; charset=UTF-8"); PrintWriter out = response.getWriter(); //图片扩展名 String[] fileTypes = new String[]{"gif", "jpg", "jpeg", "png", "bmp"}; String dirName = request.getParameter("dir"); if (dirName != null) { if(!Arrays.<String>asList(new String[]{"image", "flash", "media", "file"}).contains(dirName)){ out.print("无效的文件夹。"); out.close(); return; } rootPath += dirName + PATH_LINE; rootUrl += dirName + PATH_LINE; 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(PATH_LINE) >= 0 ? str.substring(0, str.lastIndexOf(PATH_LINE) + 1) : ""; } //排序形式,name or size or type String order = request.getParameter("order") != null ? request.getParameter("order").toLowerCase() : "name"; //不允许使用..移动到上一级目录 if (path.indexOf("..") >= 0) { out.print("访问权限拒绝。"); out.close(); return; } //最后一个字符不是/ if (!"".equals(path) && !path.endsWith(PATH_LINE)) { out.print("无效的访问参数验证。"); out.close(); return; } //目录不存在或不是目录 File currentPathFile = new File(currentPath); if(!currentPathFile.isDirectory()){ out.print("文件夹不存在。"); out.close(); return; } //遍历目录取的文件信息 List<Map<String, Object>> fileList = new ArrayList<Map<String, Object>>(); 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 { Collections.sort(fileList, new NameComparator()); } JSONObject result = new JSONObject(); 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); out.println(result.toJSONString()); out.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } private class NameComparator implements Comparator<Map<String, Object>> { public int compare(Map<String, Object> hashA, Map<String, Object> hashB) { 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")); } } } private class SizeComparator implements Comparator<Map<String, Object>> { public int compare(Map<String, Object> hashA, Map<String, Object> hashB) { 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; } } } } private class TypeComparator implements Comparator<Map<String, Object>> { public int compare(Map<String, Object> hashA, Map<String, Object> hashB) { 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")); } } } }

2.jsp页面使用方法(在head加入下面代码,替换名为description的编辑区,在此之前需导入kindeditor的相关文件,详见官方文档)

<script type="text/javascript"> KindEditor.ready(function(K) { K.create('textarea[name="descript"]', { uploadJson : 'localhost:8080/Test/fileUpload.htm', fileManagerJson : 'localhost:8080/Test/fileManager.htm', allowFileManager : true, allowImageUpload : true, autoHeightMode : true, width : "640px", height : "400px", afterCreate : function() {this.loadPlugin('autoheight');}, afterBlur : function(){ this.sync(); } //Kindeditor下获取文本框信息 }); }); </script>

使用其他的框架(比如Spring+Struts+Hibernate)方法大致相同,最终效果如下:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持自由互联。