FCKeditor是sourceforge.net上面的一個開源項目,主要是實現在線網頁編輯器的功能,可以讓web程序擁有如MS Word這樣強大的編輯功能。官方網站為http://www.fckeditor.net ,在服務器端支持ASP.Net、ASP、ClodFusion、PHP、Java等語言,並且支持IE 5+、Mozilla 、Netscape等主流浏覽器。
首先在官方網站下載fckeditor,注意有兩個包,一個是主文件,一個是jsp整合包的。
1、解壓FCKeditor_2.2.zip,(FCKeditor主文件),將FCKeditor目錄復制到網站根目錄下,
2、解壓FCKeditor-2.3.zip,(jsp,FCKeditor整合包),作用:This is the JSP Integration Pack for using FCKeditor inside a java server page without the complexity of using a Java scriptlets or the javascript api.
3、將FCKeditor-2.3/web/WEB-INF/web.xml中的兩個servlet,servlet-mapping定義復制到自已項目的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>