在一个SSH项目中,在前台整合了Fckeditor,具体用法在下面:
1.将几个jar包拷贝到lib下面:
slf4j-simple-1.5.2.jar
slf4j-api-1.5.2.jar
fckeditor-java-core-2.4.1.jar
commons-io-1.3.2.jar
commons-fileupload-1.2.1.jar
2.在web-xml中配置
Connector
net.fckeditor.connector.ConnectorServlet
1
Connector
/fckeditor/editor/filemanager/connectors/*
(注:有时候web-xml里面会出现红叉叉,但是不要管它!)
(我查了一下网上的,都是改了一下拦截器,我的改成下面)
<!-- struts2过滤器 -->
struts2
org.apache.struts2.dispatcher.FilterDispatcher
struts2
.action
struts2
.html
struts2
.jsp
struts2
/struts/
3.将fckeditor文件夹复制到webRoot下
4.在jsp页面做两件事
a:<%@ taglib prefix="fck" uri="http://java.fckeditor.net" %>
b: /fck:editor
基本步骤就是上面那样了,fckeditor的功能基本能实现,但是图片上传就不行了。在控制台没有提示什么错误,启动项目的时候有下面几条语句:
16 [main] INFO net.fckeditor.handlers.PropertiesLoader - fckeditor.properties not found
32 [main] INFO net.fckeditor.connector.ConnectorServlet - ConnectorServlet successfully initialized!
在上传图片的时候,如果点击浏览服务器,一个提示框说权限不足,如果从本地上传的话就一直停留在那个上传的窗口,无法关闭。
请高手们帮帮我哦!