【Java】java+ jsp+js 实现富文本编辑和上传图片功能

简介: kindeditor富文本插件使用

java+ jsp+js 实现富文本编辑和上传图片功能

  • 使用kindeditor富文本插件:

- kindeditor富文本官网地址
详细的文档和demo都有

  • 下面是实现步骤:

-导入项目中相关的文件
引入项目中的文件

jsp中的引入相关的css js文件

<!---引入kindeditor的样式文件-->
    <link rel="stylesheet" href="../kindeditor/plugins/code/prettify.css" />
    <link rel="stylesheet" href="../kindeditor/themes/default/default.css" />
    
 <%--富文本编辑 js文件--%>
    <script charset="utf-8" src="../kindeditor/kindeditor-all.js"></script>
    <script charset="utf-8" src="../kindeditor/kindeditor-all-min.js"></script>
    <script charset="utf-8" src="../kindeditor/lang/zh-CN.js"></script>
    <script charset="utf-8" src="../kindeditor/plugins/code/prettify.js"></script>

js代码块

         var KE;
            KindEditor.ready(function(K) {
                KE = K.create("textarea[id='editor']", {
                     allowUpload : true,
                    urlType : 'domain',//relative为相对路径,absolute为绝对路径,domain为带域名的绝对路径
//                    allowFileManager:true, //允许对上传图片进行管理
                    allowPreviewEmoticons : false,//
                    allowFileManager : true, //浏览图片空间
                    allowImageUpload: true, //多图上传。允许上传图片
                    imageTabIndex : 1, //点击上传图片按钮默认显示标签,1为本地上传,默认为0网络图片
                    allowImageRemote: false,//指定不能网络图片
                    filterMode : false, //HTML特殊代码过滤,不会过滤HTML代码
                    resizeType : 1,  //文本框不可拖动
                    cssPath :项目路径+'/kindeditor/plugins/code/prettify.css',
                    uploadJson :项目路径+'/fileouterupload/fileUpload.do',//上传图片到Java逻辑地址
                afterCreate : function() {
                this.sync();
                },
                afterBlur : function() {
                    this.sync();
                },
                    afterBlur: function(){ this.sync(); }, //编辑器失去焦点(blur)时执行的回调函数(将编辑器的HTML数据同步到textarea)
                //    afterUpload : function(url, data, name) { //上传文件后执行的回调函数,必须为3个参数
                //        if(name=="image" || name=="multiimage"){ //单个和批量上传图片时
                //            if(K("#pic").length>0){ //文本框存在
                //                document.getElementById('piclist').options[document.getElementById('piclist').length]=new Option(url,url); //下拉列表框增加一条
                //                document.getElementById('piclist').selectedIndex+=1; //选定刚新增的这一条
                //                K("#indexpicimg").html("<img src='" + url + "' width='100px' height='100px' />"); //重置图片展示区DIV的HTML内容
                //                K("#pic").val(url); //重置文本框值
                //        }
                //    }
                //},
            });
                //KE.get
            prettyPrint();
        });

java逻辑代码


import org.apache.commons.fileupload.servlet.ServletFileUpload;
import org.apache.commons.io.FileUtils;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.text.SimpleDateFormat;
import java.util.*;

/**
 * kindeditor编辑器控制部分
 */
@Controller
@RequestMapping("/fileouterupload")
public class FileManageActionController extends BaseAction
{
    // windows
    private String PATH_LINEs = "\\";
    // linux
    private String PATH_LINE = "/";

    /**
     * 文件上传
     * @param request {@link HttpServletRequest}
     * @param response {@link HttpServletResponse}
     * @return json response
     */
    @SuppressWarnings("unchecked")
    @RequestMapping(value = "/fileUpload", method = RequestMethod.POST)
    @ResponseBody
    public void fileUpload(HttpServletRequest request, HttpServletResponse response,@RequestParam(value = "imgFile", required = false) MultipartFile[] imgFile ) {
        try {
            response.setCharacterEncoding("utf-8");
            PrintWriter out = response.getWriter();
             //文件保存本地目录路径
                String savePath = MapCacheManager.getInstance().getMapCache().get("serverPathUp");
                String serverPicPath = savePath + "/" + "pic"+ "/";
            //文件保存目录URL
                String saveUrls =MapCacheManager.getInstance().getMapCache().get("serverPaths");
                String saveUrlPath = saveUrls + "/" + "upload"+ "/";
                if(!ServletFileUpload.isMultipartContent(request)){
                out.print(getError("请选择文件。"));
                out.close();
                return;
            }
            //检查目录
            File uploadDir = new File(serverPicPath);
            if(!uploadDir.isDirectory()){
                out.print(getError("上传目录不存在。"));
                out.close();
                return;
            }
            //检查目录写权限
            if(!uploadDir.canWrite()){
                out.print(getError("上传目录没有写权限。"));
                out.close();
                return;
            }

            String dirName = request.getParameter("dir");
            if (dirName == null) {
                dirName = "image";
            }

            //定义允许上传的文件扩展名
            Map<String, String> extMap = new HashMap<String, String>();
            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,xml,txt,zip,rar,gz,bz2");

            if(!extMap.containsKey(dirName)){
                out.print(getError("目录名不正确。"));
                out.close();
                return;
            }
            //创建文件夹
            serverPicPath += dirName + PATH_LINE;
           saveUrlPath+= dirName + PATH_LINE;
            File saveDirFile = new File(serverPicPath);
            if (!saveDirFile.exists()) {
                saveDirFile.mkdirs();
            }
            SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
            String ymd = sdf.format(new Date());
            serverPicPath += ymd + PATH_LINE;
           saveUrlPath += ymd + PATH_LINE;
            File dirFile = new File(serverPicPath);
            if (!dirFile.exists()) {
                dirFile.mkdirs();
            }

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

            // 保存文件
            for(MultipartFile iFile : imgFile){
                String fileName = iFile.getOriginalFilename();

                //检查文件大小
                if(iFile.getSize() > maxSize){
                    out.print(getError("上传文件大小超过限制。"));
                    out.close();
                    return;
                }
                //检查扩展名
                String fileExt = fileName.substring(fileName.lastIndexOf(".") + 1).toLowerCase();
                if(!Arrays.<String>asList(extMap.get(dirName).split(",")).contains(fileExt)){
                    out.print(getError("上传文件扩展名是不允许的扩展名。\n只允许" + extMap.get(dirName) + "格式。"));
                    out.close();
                    return;
                }

                SimpleDateFormat df = new SimpleDateFormat("yyyyMMddHHmmss");
                String newFileName = df.format(new Date()) + "_" + new Random().nextInt(1000) + "." + fileExt;
                try{
                    File uploadedFile = new File(serverPicPath, newFileName);
                }catch(Exception e){
                    out.print(getError("上传文件失败。"));
                    out.close();
                    return;
                }
                System.out.println(saveUrlPath+newFileName);
                JSONObject obj = new JSONObject();
                obj.put("error", 0);
                obj.put("url", saveUrlPath + newFileName);
                System.out.println(newFileName+"上传的图片");
                out.print(obj.toJSONString());
                out.close();
            }
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    private Map<String, Object> getError(String errorMsg) {
        Map<String, Object> errorMap = new HashMap<String, Object>();
        errorMap.put("error", 1);
        errorMap.put("message", errorMsg);
        return errorMap;
    }
}

图片保存路径配置

serverPathUp=/opt/data/html/upload/(访问路径)
serverPaths=http://ip地址:端口号

相关文章
|
1月前
|
缓存 JavaScript 前端开发
Java 如何确保 JS 不被缓存
【10月更文挑战第19天】在 Java 中,可以通过设置 HTTP 响应头来确保 JavaScript 文件不被浏览器缓存。方法包括:1. 使用 Servlet 设置响应头,通过 `doGet` 方法设置 `Expires`、`Cache-Control` 和 `Pragma` 头;2. 在 Spring Boot 中配置拦截器,通过 `NoCacheInterceptor` 类和 `WebConfig` 配置类实现相同功能。这两种方法都能确保每次请求都能获取到最新的 JavaScript 内容。
|
25天前
|
安全 Java 测试技术
🎉Java零基础:全面解析枚举的强大功能
【10月更文挑战第19天】本文收录于「滚雪球学Java」专栏,专业攻坚指数级提升,希望能够助你一臂之力,帮你早日登顶实现财富自由🚀;同时,欢迎大家关注&&收藏&&订阅!持续更新中,up!up!up!!
103 60
|
13天前
|
Java
Java 8 引入的 Streams 功能强大,提供了一种简洁高效的处理数据集合的方式
Java 8 引入的 Streams 功能强大,提供了一种简洁高效的处理数据集合的方式。本文介绍了 Streams 的基本概念和使用方法,包括创建 Streams、中间操作和终端操作,并通过多个案例详细解析了过滤、映射、归并、排序、分组和并行处理等操作,帮助读者更好地理解和掌握这一重要特性。
23 2
|
18天前
|
JavaScript
js实现简洁实用的网页计算器功能源码
这是一款使用js实现简洁实用的网页计算器功能源码。可实现比较基本的加减乘除四则运算功能,界面简洁实用,是一款比较基本的js运算功能源码。该源码可兼容目前最新的各类主流浏览器。
24 2
|
27天前
|
开发框架 JavaScript 前端开发
HarmonyOS UI开发:掌握ArkUI(包括Java UI和JS UI)进行界面开发
【10月更文挑战第22天】随着科技发展,操作系统呈现多元化趋势。华为推出的HarmonyOS以其全场景、多设备特性备受关注。本文介绍HarmonyOS的UI开发框架ArkUI,探讨Java UI和JS UI两种开发方式。Java UI适合复杂界面开发,性能较高;JS UI适合快速开发简单界面,跨平台性好。掌握ArkUI可高效打造符合用户需求的界面。
86 8
|
1月前
|
Java 程序员
在Java编程中,关键字不仅是简单的词汇,更是赋予代码强大功能的“魔法咒语”。
【10月更文挑战第13天】在Java编程中,关键字不仅是简单的词汇,更是赋予代码强大功能的“魔法咒语”。本文介绍了Java关键字的基本概念及其重要性,并通过定义类和对象、控制流程、访问修饰符等示例,展示了关键字的实际应用。掌握这些关键字,是成为优秀Java程序员的基础。
24 3
|
1月前
|
Java 数据安全/隐私保护
Java ffmpeg 实现视频加文字/图片水印功能
【10月更文挑战第22天】在 Java 中使用 FFmpeg 实现视频加文字或图片水印功能,需先安装 FFmpeg 并添加依赖(如 JavaCV)。通过构建 FFmpeg 命令行参数,使用 `drawtext` 滤镜添加文字水印,或使用 `overlay` 滤镜添加图片水印。示例代码展示了如何使用 JavaCV 实现文字水印。
|
1月前
|
人工智能 JavaScript 网络安全
ToB项目身份认证AD集成(三完):利用ldap.js实现与windows AD对接实现用户搜索、认证、密码修改等功能 - 以及针对中文转义问题的补丁方法
本文详细介绍了如何使用 `ldapjs` 库在 Node.js 中实现与 Windows AD 的交互,包括用户搜索、身份验证、密码修改和重置等功能。通过创建 `LdapService` 类,提供了与 AD 服务器通信的完整解决方案,同时解决了中文字段在 LDAP 操作中被转义的问题。
|
1月前
|
Java
让星星⭐月亮告诉你,jdk1.8 Java函数式编程示例:Lambda函数/方法引用/4种内建函数式接口(功能性-/消费型/供给型/断言型)
本示例展示了Java中函数式接口的使用,包括自定义和内置的函数式接口。通过方法引用,实现对字符串操作如转换大写、数值转换等,并演示了Function、Consumer、Supplier及Predicate四种主要内置函数式接口的应用。
27 1
|
1月前
|
JavaScript 前端开发 API
下一篇
无影云桌面