struts2下我FCKeditor上传图片时报错
报什么错误
web.xml 配置
<servlet>
<servlet-name>ConnectorServlet</servlet-name>
<servlet-class>net.fckeditor.connector.ConnectorServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>ConnectorServlet</servlet-name>
<url-pattern>/fckeditor/editor/filemanager/connectors/*</url-pattern>
</servlet-mapping>
图片上是路径
在src下新建个文件
fckeditor.properties
里面写上 配置
connector.userActionImpl=net.fckeditor.requestcycle.impl.EnabledUserAction
这句话
jsp页面引用 <%@ taglib uri="http://java.fckeditor.net" prefix="FCK"%>
<FCK:editor instanceName="articleContent" basePath="/fckeditor" toolbarSet="Default" width="700" height="500""></FCK:editor>
最有可能出错的地方是你的jar包出错
一定要引用的是commons-io-1.3.2.jar 和 commons-fileupload-1.2.1.jar 不要用struts2 中自带的这两个jar包 否则就会报错