首先下载并解压最新的FCKeditor到各自的目录,一个是FCKeditor的核心文件,另一个是针对jsp的文件包
下载地址:
http://www.fckeditor.net/download 接下来我们可以开始配置了。
我是在eclipse下来配置的
环境:
jdk:1.4
eclisp:3.12
plugin:myeclipse4.0
FCKeditor :FCKeditor_2.3.2
FCKeditor.java:FCKeditor-2.3
1.新建一个webproject,我这里取名为FCK。
2.把FCKeditor_2.3.2目录下的FCKeditor目录拷贝到FCK工程的根目录,即WebRoot目录下。
3.将FCKeditor-2.3\web\WEB-INF目录下的web.xml中的两个servlet,servlet-mapping定义复制到工程的web.xml文件中去。
4.修改web.xml文件
把
<servlet-mapping> <servlet-name>Connector</servlet-name> <url-pattern>/editor/filemanager/browser/default/connectors/jsp/connector</url-pattern> </servlet-mapping>
<servlet-mapping> <servlet-name>SimpleUploader</servlet-name> <url-pattern>/editor/filemanager/upload/simpleuploader</url-pattern> </servlet-mapping> |
为
<servlet-mapping> <servlet-name>Connector</servlet-name> <url-pattern>/FCKeditor/editor/filemanager/browser/default/connectors/jsp/connector</url-pattern> </servlet-mapping>
<servlet-mapping> <servlet-name>SimpleUploader</servlet-name> <url-pattern>/FCKeditor/editor/filemanager/upload/simpleuploader</url-pattern> </servlet-mapping> |
这里的/FCKeditor/是对应你webroot目录下的FCKeditor目录。
5.拷贝FCKeditor-2.3\web\WEB-INF\lib下的两个jar包到WebRoot\WEB-INF\lib目录下
(在项目的库中添加FCKeditor-2.3\web\WEB-INF\lib下的两个jar包 达不到同样的效果,一定要拷贝到lib目录下)
6.在webroot目录下新建一个jsp,使用默认的MyJsp.jsp即可。
7. 文件开头处加入 :
<%@ taglib uri="http://fckeditor.net/tags-fckeditor" prefix="FCK" %>
8.在jsp中嵌入的代码:在Jsp中使用
方法一:(可能会出现:The requested resource (/FCK/editor/fckeditor.html) is not available)
<c:set var="basepath"><c:url value="/fck/" /></c:set>
<FCK:editor id="descn" basePath="${basepath}" height="500px">
<c:out value="${book.descn}" escapeXml="false" default="" />
</FCK:editor>
方法二:
<FCK:editor id="infoContent" basePath="/FCK/FCKeditor/"
width="800"
height="300"
>
请输入内容
</FCK:editor>
9.部署好工程,开启tomcat,打开MyJsp.jsp页面即可。
10.三种方法调用FCKeditor
<%--
三种方法调用FCKeditor
1.FCKeditor自定义标签 (必须加头文件 <%@ taglib uri="/TestFCKeditor" prefix="FCK" %> )
2.script脚本语言调用 (必须引用 脚本文件 <script type="text/javascript" src="/TestFCKeditor/FCKeditor/fckeditor.js"></script> )
3.FCKeditor API 调用 (必须加头文件 <%@ page language="java" import="com.fredck.FCKeditor.*" %> )
--%>
<%--
<form action="show.jsp" method="post" target="_blank">
<FCK:editor id="content" basePath="/TestFCKeditor/FCKeditor/"
width="700"
height="500"
skinPath="/TestFCKeditor/FCKeditor/editor/skins/silver/"
toolbarSet = "Default"
>
input
</FCK:editor>
<input type="submit" value="Submit">
</form>
--%>
<form action="show.jsp" method="post" target="_blank">
<table border="0" width="700"><tr><td>
<textarea id="content" name="content" style="WIDTH: 100%; HEIGHT: 400px">input</textarea>
<script type="text/javascript">
var oFCKeditor = new FCKeditor('content') ;
oFCKeditor.BasePath = "/TestFCKeditor/FCKeditor/" ;
oFCKeditor.Height = 400;
oFCKeditor.ToolbarSet = "Default" ;
oFCKeditor.ReplaceTextarea();
</script>
<input type="submit" value="Submit">
</td></tr></table>
</form>
<%--
<form action="show.jsp" method="post" target="_blank">
<%
FCKeditor oFCKeditor ;
oFCKeditor = new FCKeditor( request, "content" ) ;
oFCKeditor.setBasePath( "/TestFCKeditor/FCKeditor/" ) ;
oFCKeditor.setValue( "input" );
out.println( oFCKeditor.create() ) ;
%>
<br>
<input type="submit" value="Submit">
</form>
--%>
添加文件/TestFCKeditor/show.jsp:
<%
String content = request.getParameter("content");
out.print(content);
out.println(request.getParameter("title"));
%>
<!--表单中的input的name可以等于这里request.getParameter("parameter") 中的parameter参数。可以通过out.println输出
<FCK:editor id="content".....>FCK中的id相当于input的name
-->
11.FCKeditor编辑器文件上传配置
FCKeditor编辑器的配置文件是fckconfig.js,其中有对编辑器各种默认属性的设置。以下是fckeditor与java集成使用 时上传文件的设置(需要注意的是编辑器不会自动创建文件上传的文件夹,需要在项目的根目录中手动添加),将fckeditor.js文件中以下几个属性原 来的值修改为如下设置:
FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/jsp/connector" ;
FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=connectors/jsp/connector" ;
FCKConfig.FlashBrowserURL =FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Flash&Connector=connectors/jsp/connector" ;
FCKConfig.LinkUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=File' ;
FCKConfig.ImageUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=Image' ;
FCKConfig.FlashUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=Flash' ;
至此,即可使用FCKeditor的文件上传功能。