首先从 FCK Editor 网站下载最新版本的FCKeditor_2.6.4.1和fckeditor-java-2.4.2-bin,下载sl4j1.5.8,
将FCKeditor_2.6.4.1解压后,将fckeditor文件夹复制到WebContent目录下
将fckeditor-java-2.4.2-bin解压后,将fckeditor-java-core-2.4.2.jar和lib/commons-io-1.3.2.jar复制到WebContent/WEB-INF/lib目录下
将sl4j1.5.8解压后将slf4j-api-1.5.8.jar和slf4j-log4j12-1.5.8.jar添加到WebContent/WEB-INF/lib下
在页面上我们通过fck taglib的方式来使用它,在页面头部添加
<%@ taglib uri="http://java.fckeditor.net" prefix="FCK" %>
在需要进行RichEditor的位置添加
<FCK:editor instanceName="description" height="300px" width="400px">
</FCK:editor>
instanceName的值就是你想使用的表单域的名字,比如description
OK,运行项目,访问页面
关于FCK的详细配置,参见http://lixor.javaeye.com/blog/434889