UEditor 1.2.5 for java 自定义配置

本文详细介绍了如何在UEditor编辑器中自定义工具栏布局,隐藏用户管理图片的功能,以及如何修改默认的图片和文件上传路径。包括在editor_config.js文件中的配置调整,以及对于dialogs/image/image.html页面元素的样式修改。通过调整这些设置,可以优化UEditor的使用体验,同时确保图片上传的安全性和可控性。

1、自定义工具栏


editor_config.js文件中,找到,toolbars:…并修改,:

,toolbars:[["source","preview","fullscreen","print","searchreplace", "|", 
"undo","redo", "|",
			"removeformat","formatmatch","autotypeset","blockquote","pasteplain","|",
            "unlink","link","anchor","spechars","separate","horizontal","insertunorderedlist","insertorderedlist","|", 
            "rowspacingbottom","rowspacingtop","lineheight","justifyleft","justifycenter","justifyright","justifyjustify","indent", "|", 
            "bold","italic","underline","strikethrough","superscript","subscript","forecolor","backcolor","paragraph","fontfamily","fontsize", "|", 
            "inserttable","deletetable","mergeright","mergedown","splittorows","splittocols","splittocells","mergecells","insertcol","insertrow","deletecol","deleterow","insertparagraphbeforetable", "|", 
            "insertimage","music","emotion","insertvideo","attachment","wordimage","map","gmap","insertframe","date","time"]]

工具之间使用的”|”表示普通分隔,如果强制换行则使用[]把工具括住



2、减少用户管理图片的功能(很多应用都有这个需求,只希望用户上传图片,并不希望他们可以看到其他图片的信息,因此我们需要隐藏红圈部分)

打开项目中的ueditor/dialogs/image/image.html,找到<span tabSrc="imgManager" 和
<span tabSrc="imgSearch"  还有 <div class="saveDir"  3个元素,都加上style=”display:none;”样式,把上述3个部分隐藏掉.



3、修改默认的图片和文件上传路径

Ueditor默认的图片和文件上传路径为/webname/ueditor/jsp/upload下
如果需要修改图片和文件的上传路径,不但需要修改editor_config.js配置文件,还要修改Uploader.java(某些情况还需要修改/webname/ueditor/jsp/下的imageUp.jsp和fileUp.jsp,具体根据需要而定)


例:在项目myDemo中,把默认图片的上传路径改为:/myDemo/userfiles/upload/images, 把文件上传路径改为:/myDemo/userfiles/upload/attachment


1) 修改editor_config.js配置文件,把imagePath, filePath, imageManagerPath 从原来的URL + “jsp/”都修改为”/myDemo/”。

2) 修改Uploader.java中的getPhysicalPath()方法,返回与editor_config.js中imagePath, filePath, imageManagerPath一样的值。修改后代码如下:

private String getPhysicalPath(String path) {
	//String servletPath = this.request.getServletPath();
	//String realPath = this.request.getSession().getServletContext().getRealPath(servletPath);
	//return new File(realPath).getParent() +"/" +path;
	return this.request.getSession().getServletContext().getRealPath("/") + "/" + path;
}
3) 修改jsp文件夹中的imageUp.jsp文件,把up.setSavePath("upload ");改为up.setSavePath("userfiles/upload/images");
修改fileUp.jsp文件,把up.setSavePath("upload ");改为up.setSavePath("userfiles/upload/attachment");

.






转载于:https://my.oschina.net/tarark/blog/119284

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值