struts2整合kindeditor有感

我把kindeditor单独引入eclipse时,界面能够正确显示,图片能够正常上传。
kindeditor最好一次性放入根目录,WebContent。
但引入s2sh项目时,界面不能正常显示。多方寻找原因,原来是struts2与kindeditor有冲突。
kindeditor的界面被struts2拦截器拦截。如何使kindeditor绕过struts2拦截器呢?
我想了个办法,把
 <filter>
  <filter-name>struts2</filter-name>
  <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
 </filter>
 <filter-mapping>
  <filter-name>struts2</filter-name>
  <url-pattern>/*</url-pattern>
 </filter-mapping>

改成了<url-pattern>/*.action</url-pattern>这样,启动后报错,说Tomcat无法启动,我以为是Tomcat坏了,于是删了重装,
但是没用。Tomcat“坏”得太莫名其妙了,后来才知道,原来不是Tomcat有问题,而是我代码写错了。/*.action是错误写法,
应该是<url-pattern>*.action</url-pattern>,启动,Tomcat就“好”了。

现在struts2只拦截.action请求,我的jsp页面里的kindeditor可以逃过一劫了。果然.jsp页面正常显示了。
还有,文件中不能有<s:>标签,不然会出错,因为struts2的标签也是通过拦截器实现的。
但还不行,我的页面中要显示一个由action传来的数据,唉,还是绕不过action。

经过痛苦的研究,先把web.xml还原成<url-pattern>/*</url-pattern>,然后在struts.xml文件中加入
<constant name="struts.action.excludePattern" value="admin/product_addInput.action"></constant>
excludePattern是设置不需要struts拦截的内容,那struts就知道在admin文件夹下的product_addInput.action请求不需要拦截。
浏览器输入http://localhost:8080/fangyun/admin/product_addInput.action页面里的kindeditor就能正常显示了。
记住,不是http://localhost:8080/fangyun/product_addInput.action,这样会出错的,因为struts会觉得那不是
"admin/product_addInput.action"请求。(fangyun是我的项目名)

kindeditor的显示关总算是过了,但是kindeditor的图片上传总是出错,难道图片文件上传也被kindeditor拦截了?
经过多次尝试,发现不是这个原因。
是kindeditor/jsp/upload_json.jsp这个文件要重写,重写后图片能上传,struts2整合kindeditor成功!


内容如下:


<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>

<%@ page import="java.util.*,java.io.*" %>

<%@ page import="java.text.SimpleDateFormat" %>

<%@ page import="org.apache.commons.fileupload.*" %>

<%@ page import="org.apache.commons.fileupload.disk.*" %>

<%@ page import="org.apache.commons.fileupload.servlet.*" %>

<%@ page import="org.json.simple.*" %>

<%@ page import="org.apache.struts2.dispatcher.multipart.MultiPartRequestWrapper" %>

 

<%

//文件保存目录路径   

//D:\Tomcat6.0\webapps\zswz\attached/

String savePath = request.getSession().getServletContext().getRealPath("/") + "kindeditor/attached/";

//文件保存目录URL /zswz/attached/

String saveUrl = request.getContextPath() + "/kindeditor/attached/";

//定义允许上传的文件扩展名

//定义允许上传的文件扩展名

HashMap<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,txt,zip,rar,gz,bz2");

 

//允许最大上传文件大小 struts.xml struts.multipart.maxSize=3G

long maxSize = 3000000000l;

 

response.setContentType("text/html; charset=UTF-8");

 

if(!ServletFileUpload.isMultipartContent(request)){

    out.println(getError("请选择文件。"));

    return;

}

//检查目录

File uploadDir = new File(savePath);

if(!uploadDir.isDirectory()){

    out.println(getError("上传目录不存在。"));

    return;

}

//检查目录写权限

if(!uploadDir.canWrite()){

    out.println(getError("上传目录没有写权限。"));

    return;

}

 

String dirName = request.getParameter("dir");//image

if (dirName == null) {

    dirName = "image";

}

if(!extMap.containsKey(dirName)){

    out.println(getError("目录名不正确。"));

    return;

}

//创建文件夹

savePath += dirName + "/";//D:\Tomcat6.0\webapps\zswz\attached/image/

saveUrl += dirName + "/";///zswz/attached/image/

File saveDirFile = new File(savePath);

if (!saveDirFile.exists()) {

    saveDirFile.mkdirs();

}

SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");

String ymd = sdf.format(new Date());

savePath += ymd + "/";//D:\Tomcat6.0\webapps\zswz\attached/image/20111129/

saveUrl += ymd + "/";///zswz/attached/image/20111129/

File dirFile = new File(savePath);

if (!dirFile.exists()) {

    dirFile.mkdirs();

}

if (!dirFile.isDirectory()) {

    out.println(getError("上传目录不存在 。"));

    return;

}

//检查目录写入权限

if (!dirFile.canWrite()) {

    out.println(getError("上传目录没有写入权限。"));

    return;

}

 

//Struts2 请求 包装过滤器

MultiPartRequestWrapper wrapper = (MultiPartRequestWrapper) request;

//获得上传的文件名

String fileName = wrapper.getFileNames("imgFile")[0];//imgFile,imgFile,imgFile

//获得文件过滤器

File file = wrapper.getFiles("imgFile")[0];

 

//检查扩展名

String fileExt = fileName.substring(fileName.lastIndexOf(".") + 1).toLowerCase();

if(!Arrays.<String>asList(extMap.get(dirName).split(",")).contains(fileExt)){

    out.println(getError("上传文件扩展名是不允许的扩展名。\n只允许" + extMap.get(dirName) + "格式。"));

    return;

}

//检查文件大小

if (file.length() > maxSize) {

        out.println(getError("上传文件大小超过限制。"));

        return;

}

 

 

//重构上传图片的名称

SimpleDateFormat df = new SimpleDateFormat("yyyyMMddHHmmss");

String newImgName = df.format(new Date()) + "_"

                + new Random().nextInt(1000) + "." + fileExt;

byte[] buffer = new byte[1024];

//获取文件输出流

FileOutputStream fos = new FileOutputStream(savePath +"/" + newImgName);

//获取内存中当前文件输入流

InputStream in = new FileInputStream(file);

try {

        int num = 0;

        while ((num = in.read(buffer)) > 0) {

                fos.write(buffer, 0, num);

        }

} catch (Exception e) {

        e.printStackTrace(System.err);

} finally {

        in.close();

        fos.close();

}

//发送给 KE

JSONObject obj = new JSONObject();

obj.put("error", 0);

obj.put("url", saveUrl +"/" + newImgName);

///zswz/attached/image/20111129/  image 20111129195421_593.jpg

out.println(obj.toJSONString());

%>

<%!

private String getError(String message) {

    JSONObject obj = new JSONObject();

    obj.put("error", 1);

    obj.put("message", message);

    return obj.toJSONString();

}

%>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值