博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
富文本编译器UEditor+SSM的使用
阅读量:6437 次
发布时间:2019-06-23

本文共 20692 字,大约阅读时间需要 68 分钟。

下载ueditor-jsp版的资源包,解压并放到webapp目录下 在要引入的jsp页面引入js文件

注*:不用引入css文件

复制代码

ueditor.config.js中要做些常用的配置

// ueditor目录所在项目下的绝对路径,不配置的话,jsp页面会引入不到ueditor编辑器var URL = window.UEDITOR_HOME_URL || "/model/ueditor/"; // 编辑器的宽高设置initialFrameWidth:'80%'  //初始化编辑器宽度,默认1000initialFrameHeight:400  //初始化编辑器高度,默认320复制代码

在form表单中加入textarea标签

复制代码

后台文件上传的接口

@RequestMapping("/upload")public void upload(HttpServletRequest request, HttpServletResponse response) throws Exception {    JSONObject jsonObject = new JSONObject();    jsonObject.put("code", 1);    String path = "";    String path1 = "";    String path2 = "";    CommonsMultipartResolver multipartResolver = new CommonsMultipartResolver(request.getSession().getServletContext());    // 从session中获取当前用户信息    User user = (User) request.getSession().getAttribute("user");    if (multipartResolver.isMultipart(request)) {//            MultipartHttpServletRequest multiRequest = (MultipartHttpServletRequest) request;        // 以上方法出现类型转换异常时用如下方法代替        MultipartResolver resolver = new CommonsMultipartResolver(request.getSession().getServletContext());        MultipartHttpServletRequest multiRequest = resolver.resolveMultipart(request);        /        Iterator
iter = multiRequest.getFileNames(); while (iter.hasNext()) { MultipartFile file = multiRequest.getFile(iter.next().toString()); if (file != null) { // 文件名 String fileName = file.getOriginalFilename(); // 用户名 String userName = user.getName(); // 判断后缀 if (!(fileName.endsWith(".jpg") || fileName.endsWith(".png") || fileName.endsWith(".gif") || fileName.endsWith(".bmp") || fileName.endsWith(".jpeg") || fileName.endsWith(".JPG") || fileName.endsWith(".PNG") || fileName.endsWith(".GIF") || fileName.endsWith(".BMP") || fileName.endsWith(".JPEG"))) { String uuid = UUID.randomUUID().toString().replaceAll("-", ""); String fileType = "jpg"; if (fileName.indexOf(".") > -1) { fileType = fileName.substring(fileName.lastIndexOf(".")); } // 文件上传本地路径 path = "D://shihe/ICMS/user/" + userName + "/notice/file/" + uuid + fileType; // tomcat映射的虚拟路径 path2 = "/ICMS/user/" + userName + "/notice/file/" + uuid + fileType; File newFile = new File(path); if (!newFile.getParentFile().exists()) { // 如果目标文件所在的目录不存在,则创建父目录 newFile.getParentFile().mkdirs(); } file.transferTo(new File(path)); jsonObject.put("state", "SUCCESS"); jsonObject.put("title", " "); jsonObject.put("original", uuid + fileType); jsonObject.put("url", path2); } else { String uuid = UUID.randomUUID().toString().replaceAll("-", ""); String fileType = "jpg"; if (fileName.indexOf(".") > -1) { fileType = fileName.substring(fileName.lastIndexOf(".")); } // 文件上传本地路径,原图 path = "D://shihe/ICMS/user/" + userName + "/notice/image/" + fileName; // 压缩后的图片,文件名为uuid,和原图在同一目录下 path1 = "D://shihe/ICMS/user/" + userName + "/notice/image/" + uuid + fileType; // tomcat虚拟路径,与本地图片路径映射 path2 = "/ICMS/user/" + userName + "/notice/image/" + uuid + fileType; File newFile = new File(path); if (!newFile.getParentFile().exists()) { // 如果目标文件所在的目录不存在,则创建父目录 newFile.getParentFile().mkdirs(); } file.transferTo(new File(path)); ImageUtils.scale2(path, path1, 200, 300, true); // 返回状态 jsonObject.put("state", "SUCCESS"); jsonObject.put("title", " "); jsonObject.put("original", uuid + fileType); jsonObject.put("url", path2); } } } } response.setContentType("text/html;charset=utf-8");//设置页面的字符编码,解决界面显示中文乱码的问题; response.setHeader("Content-Type", "text/html"); response.getWriter().write(jsonObject.toString());}复制代码

ImageUtils.java代码

package com.shihe.ImageCenter.dmc.util.commons;import javax.imageio.ImageIO;import java.awt.*;import java.awt.color.ColorSpace;import java.awt.geom.AffineTransform;import java.awt.image.*;import java.io.File;import java.io.IOException;public class ImageUtils {    public static String IMAGE_TYPE_GIF = "gif";// 图形交换格式    public static String IMAGE_TYPE_JPG = "jpg";// 联合照片专家组    public static String IMAGE_TYPE_JPEG = "jpeg";// 联合照片专家组    public static String IMAGE_TYPE_BMP = "bmp";// 英文Bitmap(位图)的简写,它是Windows操作系统中的标准图像文件格式    public static String IMAGE_TYPE_PNG = "png";// 可移植网络图形    public static String IMAGE_TYPE_PSD = "psd";// Photoshop的专用格式Photoshop    public static void main(String[] args) {        // 1-缩放图像:        // 方法一:按比例缩放        ImageUtils.scale("d:/file/医院排班表/医院排班表_1.png", "d:/file/医院排班表/111.png", 5, false);//测试OK        // 方法二:按高度和宽度缩放       /* ImageUtils.scale2("d:/1.jpg", "d:/2_scale2.jpg", 200, 300, true);//测试OK        // 2-切割图像:        // 方法一:按指定起点坐标和宽高切割        ImageUtils.cut("e:/abc.jpg", "e:/abc_cut.jpg", 0, 0, 400, 400 );//测试OK        // 方法二:指定切片的行数和列数        ImageUtils.cut2("e:/abc.jpg", "e:/", 2, 2 );//测试OK        // 方法三:指定切片的宽度和高度        ImageUtils.cut3("e:/abc.jpg", "e:/", 300, 300 );//测试OK        // 3-图像类型转换:        ImageUtils.convert("e:/abc.jpg", "GIF", "e:/abc_convert.gif");//测试OK        // 4-彩色转黑白:        ImageUtils.gray("e:/abc.jpg", "e:/abc_gray.jpg");//测试OK        // 5-给图片添加文字水印:        // 方法一:        ImageUtils.pressText("我是水印文字","e:/abc.jpg","e:/abc_pressText.jpg","宋体",Font.BOLD,Color.white,80, 0, 0, 0.5f);//测试OK        // 方法二:        ImageUtils.pressText2("我也是水印文字", "e:/abc.jpg","e:/abc_pressText2.jpg", "黑体", 36, Color.white, 80, 0, 0, 0.5f);//测试OK        // 6-给图片添加图片水印:        ImageUtils.pressImage("e:/abc2.jpg", "e:/abc.jpg","e:/abc_pressImage.jpg", 0, 0, 0.5f);//测试OK*/    }    public final static void scale(String srcImageFile, String result,                                   int scale, boolean flag) {        try {            BufferedImage src = ImageIO.read(new File(srcImageFile)); // 读入文件            int width = src.getWidth(); // 得到源图宽            int height = src.getHeight(); // 得到源图长            if (flag) {
// 放大 width = width * scale; height = height * scale; } else {
// 缩小 width = width / scale; height = height / scale; } Image image = src.getScaledInstance(width, height, Image.SCALE_DEFAULT); BufferedImage tag = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics g = tag.getGraphics(); g.drawImage(image, 0, 0, null); // 绘制缩小后的图 g.dispose(); ImageIO.write(tag, "JPEG", new File(result));// 输出到文件流 } catch (IOException e) { e.printStackTrace(); } } @SuppressWarnings("static-access") public final static void scale2(String srcImageFile, String result, int height, int width, boolean bb) { try { double ratio = 0.0; // 缩放比例 File f = new File(srcImageFile); BufferedImage bi = ImageIO.read(f); Image itemp = bi.getScaledInstance(width, height, bi.SCALE_SMOOTH); // 计算比例 if ((bi.getHeight() > height) || (bi.getWidth() > width)) { if (bi.getHeight() > bi.getWidth()) { ratio = (new Integer(height)).doubleValue() / bi.getHeight(); } else { ratio = (new Integer(width)).doubleValue() / bi.getWidth(); } AffineTransformOp op = new AffineTransformOp(AffineTransform .getScaleInstance(ratio, ratio), null); itemp = op.filter(bi, null); } if (bb) {
//补白 BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics2D g = image.createGraphics(); g.setColor(Color.white); g.fillRect(0, 0, width, height); if (width == itemp.getWidth(null)) g.drawImage(itemp, 0, (height - itemp.getHeight(null)) / 2, itemp.getWidth(null), itemp.getHeight(null), Color.white, null); else g.drawImage(itemp, (width - itemp.getWidth(null)) / 2, 0, itemp.getWidth(null), itemp.getHeight(null), Color.white, null); g.dispose(); itemp = image; } ImageIO.write((BufferedImage) itemp, "JPEG", new File(result)); } catch (IOException e) { e.printStackTrace(); } } public final static void cut(String srcImageFile, String result, int x, int y, int width, int height) { try { // 读取源图像 BufferedImage bi = ImageIO.read(new File(srcImageFile)); int srcWidth = bi.getHeight(); // 源图宽度 int srcHeight = bi.getWidth(); // 源图高度 if (srcWidth > 0 && srcHeight > 0) { Image image = bi.getScaledInstance(srcWidth, srcHeight, Image.SCALE_DEFAULT); // 四个参数分别为图像起点坐标和宽高 // 即: CropImageFilter(int x,int y,int width,int height) ImageFilter cropFilter = new CropImageFilter(x, y, width, height); Image img = Toolkit.getDefaultToolkit().createImage( new FilteredImageSource(image.getSource(), cropFilter)); BufferedImage tag = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics g = tag.getGraphics(); g.drawImage(img, 0, 0, width, height, null); // 绘制切割后的图 g.dispose(); // 输出为文件 ImageIO.write(tag, "JPEG", new File(result)); } } catch (Exception e) { e.printStackTrace(); } } public final static void cut2(String srcImageFile, String descDir, int rows, int cols) { try { if(rows<=0||rows>20) rows = 2; // 切片行数 if(cols<=0||cols>20) cols = 2; // 切片列数 // 读取源图像 BufferedImage bi = ImageIO.read(new File(srcImageFile)); int srcWidth = bi.getHeight(); // 源图宽度 int srcHeight = bi.getWidth(); // 源图高度 if (srcWidth > 0 && srcHeight > 0) { Image img; ImageFilter cropFilter; Image image = bi.getScaledInstance(srcWidth, srcHeight, Image.SCALE_DEFAULT); int destWidth = srcWidth; // 每张切片的宽度 int destHeight = srcHeight; // 每张切片的高度 // 计算切片的宽度和高度 if (srcWidth % cols == 0) { destWidth = srcWidth / cols; } else { destWidth = (int) Math.floor(srcWidth / cols) + 1; } if (srcHeight % rows == 0) { destHeight = srcHeight / rows; } else { destHeight = (int) Math.floor(srcWidth / rows) + 1; } // 循环建立切片 // 改进的想法:是否可用多线程加快切割速度 for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { // 四个参数分别为图像起点坐标和宽高 // 即: CropImageFilter(int x,int y,int width,int height) cropFilter = new CropImageFilter(j * destWidth, i * destHeight, destWidth, destHeight); img = Toolkit.getDefaultToolkit().createImage( new FilteredImageSource(image.getSource(), cropFilter)); BufferedImage tag = new BufferedImage(destWidth, destHeight, BufferedImage.TYPE_INT_RGB); Graphics g = tag.getGraphics(); g.drawImage(img, 0, 0, null); // 绘制缩小后的图 g.dispose(); // 输出为文件 ImageIO.write(tag, "JPEG", new File(descDir + "_r" + i + "_c" + j + ".jpg")); } } } } catch (Exception e) { e.printStackTrace(); } } public final static void cut3(String srcImageFile, String descDir, int destWidth, int destHeight) { try { if(destWidth<=0) destWidth = 200; // 切片宽度 if(destHeight<=0) destHeight = 150; // 切片高度 // 读取源图像 BufferedImage bi = ImageIO.read(new File(srcImageFile)); int srcWidth = bi.getHeight(); // 源图宽度 int srcHeight = bi.getWidth(); // 源图高度 if (srcWidth > destWidth && srcHeight > destHeight) { Image img; ImageFilter cropFilter; Image image = bi.getScaledInstance(srcWidth, srcHeight, Image.SCALE_DEFAULT); int cols = 0; // 切片横向数量 int rows = 0; // 切片纵向数量 // 计算切片的横向和纵向数量 if (srcWidth % destWidth == 0) { cols = srcWidth / destWidth; } else { cols = (int) Math.floor(srcWidth / destWidth) + 1; } if (srcHeight % destHeight == 0) { rows = srcHeight / destHeight; } else { rows = (int) Math.floor(srcHeight / destHeight) + 1; } // 循环建立切片 // 改进的想法:是否可用多线程加快切割速度 for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { // 四个参数分别为图像起点坐标和宽高 // 即: CropImageFilter(int x,int y,int width,int height) cropFilter = new CropImageFilter(j * destWidth, i * destHeight, destWidth, destHeight); img = Toolkit.getDefaultToolkit().createImage( new FilteredImageSource(image.getSource(), cropFilter)); BufferedImage tag = new BufferedImage(destWidth, destHeight, BufferedImage.TYPE_INT_RGB); Graphics g = tag.getGraphics(); g.drawImage(img, 0, 0, null); // 绘制缩小后的图 g.dispose(); // 输出为文件 ImageIO.write(tag, "JPEG", new File(descDir + "_r" + i + "_c" + j + ".jpg")); } } } } catch (Exception e) { e.printStackTrace(); } } public final static void convert(String srcImageFile, String formatName, String destImageFile) { try { File f = new File(srcImageFile); f.canRead(); f.canWrite(); BufferedImage src = ImageIO.read(f); ImageIO.write(src, formatName, new File(destImageFile)); } catch (Exception e) { e.printStackTrace(); } } public final static void gray(String srcImageFile, String destImageFile) { try { BufferedImage src = ImageIO.read(new File(srcImageFile)); ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_GRAY); ColorConvertOp op = new ColorConvertOp(cs, null); src = op.filter(src, null); ImageIO.write(src, "JPEG", new File(destImageFile)); } catch (IOException e) { e.printStackTrace(); } } public final static void pressText(String pressText, String srcImageFile, String destImageFile, String fontName, int fontStyle, Color color, int fontSize,int x, int y, float alpha) { try { File img = new File(srcImageFile); Image src = ImageIO.read(img); int width = src.getWidth(null); int height = src.getHeight(null); BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics2D g = image.createGraphics(); g.drawImage(src, 0, 0, width, height, null); g.setColor(color); g.setFont(new Font(fontName, fontStyle, fontSize)); g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha)); // 在指定坐标绘制水印文字 g.drawString(pressText, (width - (getLength(pressText) * fontSize)) / 2 + x, (height - fontSize) / 2 + y); g.dispose(); ImageIO.write((BufferedImage) image, "JPEG", new File(destImageFile));// 输出到文件流 } catch (Exception e) { e.printStackTrace(); } } public final static void pressText2(String pressText, String srcImageFile,String destImageFile, String fontName, int fontStyle, Color color, int fontSize, int x, int y, float alpha) { try { File img = new File(srcImageFile); Image src = ImageIO.read(img); int width = src.getWidth(null); int height = src.getHeight(null); BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics2D g = image.createGraphics(); g.drawImage(src, 0, 0, width, height, null); g.setColor(color); g.setFont(new Font(fontName, fontStyle, fontSize)); g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha)); // 在指定坐标绘制水印文字 g.drawString(pressText, (width - (getLength(pressText) * fontSize)) / 2 + x, (height - fontSize) / 2 + y); g.dispose(); ImageIO.write((BufferedImage) image, "JPEG", new File(destImageFile)); } catch (Exception e) { e.printStackTrace(); } } public final static void pressImage(String pressImg, String srcImageFile,String destImageFile, int x, int y, float alpha) { try { File img = new File(srcImageFile); Image src = ImageIO.read(img); int wideth = src.getWidth(null); int height = src.getHeight(null); BufferedImage image = new BufferedImage(wideth, height, BufferedImage.TYPE_INT_RGB); Graphics2D g = image.createGraphics(); g.drawImage(src, 0, 0, wideth, height, null); // 水印文件 Image src_biao = ImageIO.read(new File(pressImg)); int wideth_biao = src_biao.getWidth(null); int height_biao = src_biao.getHeight(null); g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha)); g.drawImage(src_biao, (wideth - wideth_biao) / 2, (height - height_biao) / 2, wideth_biao, height_biao, null); // 水印文件结束 g.dispose(); ImageIO.write((BufferedImage) image, "JPEG", new File(destImageFile)); } catch (Exception e) { e.printStackTrace(); } } public final static int getLength(String text) { int length = 0; for (int i = 0; i < text.length(); i++) { if (new String(text.charAt(i) + "").getBytes().length > 1) { length += 2; } else { length += 1; } } return length / 2; }}复制代码

IDEA中需要配置单独的虚拟路径映射,如果直接修改tomcat中的server.xml配置,配置不会生效
以上代码专门用于文件上传,表单提交和以前一样,没什么变化

  • tomcat运行配置 -> edit configurations.. -> Deployment -> 添加External Source -> 选择本地文件夹 -> Application context(配置tomcat映射文件夹)
  • 如果将项目部署到tomcat中去的话,就要配置server.xml了,在Host标签下配置
复制代码

富文本编译器如果其中加入输入法的表情符号,数据库如果不是utf8mb4编码则会报错

解决办法:

附上ueditor-jsp稳定版:

链接: 提取码: rfix

如果出现错误:请求后台配置项http错误,上传功能将不能正常使用!

请将ueditor下lib文件夹的所有jar包添加到项目依赖中

转载地址:http://ankwo.baihongyu.com/

你可能感兴趣的文章
BZOJ4133 : Answer的排队
查看>>
基于Centos搭建 Mono 开发环境
查看>>
算法题:福尔摩斯的约会
查看>>
Oralce sql (+) 补充
查看>>
hdu 2665 划分树
查看>>
laravel中的plicy授权方法:
查看>>
基于R进行相关性分析--转载
查看>>
常用 cdn
查看>>
tomcat8 管理页面403 Access Denied的解决方法
查看>>
怎样避免应用冷启动
查看>>
把vux中的@font-face为base64格式的字体信息解码成可用的字体文件
查看>>
vue sync
查看>>
CentOS6下OpenLDAP+PhpLdapAdmin基本安装及主从/主主高可用模式部署记录
查看>>
Wix 安装部署教程(十一) ---QuickWix
查看>>
Spring @Value注解问题
查看>>
P1886 滑动窗口
查看>>
实施vertex compression所遇到的各种问题和解决办法
查看>>
ubuntu 12.04 rails server 时候报错 execjs
查看>>
linux下文件压缩与解压操作
查看>>
使用树莓派实现微信远程监控
查看>>