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-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檔案中 修改如下內容: |
|
修改結果: |
|
4.將FCKeditor-2.3/web/WEB-INF/lib目錄下檔案複製到自已項目的lib資料夾中 5、在需使用FCKeditor的jsp介面中加入: // 檔案開頭處加入 //要使用的地方加入 |
|
啟動伺服器測試…成功後,來給FCKeditor瘦瘦身. 1、將FCKeditor目錄下及子目錄下所有以”_”下劃線開頭的資料夾刪除 2.FCKeditor根目錄下只保留fckconfig.js, fckeditor.js, fckstyles.xml, fcktemplates.xml其餘全部刪除 3.將editor/filemanager/upload目錄下檔案及資料夾清空. 4.還可以將editor/skins目錄下的皮膚檔案刪除,只留下default一套皮膚(如果你不需要換皮膚的話) 5.還可以將editor/lang目錄下檔刪除,只保留en.js, fcklanguagemanager.js, zh-cn.js, zh.js檔(英文,簡體中文,繁體中文一般應該夠用了:) ) 完成。 其它問題: 在struts+spring+hibernate中使用,上傳圖像功能中可能會出現報紙: The output format must have a '{http://xml.apache.org/xalan}content-handler' property! 錯誤的情況,將WEB-INF/lib目錄下xalan*.jar刪除試試 安全問題: 假如在前台讓普通用戶也能使用FCKEditor,要注意相關安全問題,在前台使用時,不要使用預設的ToolBar,要將添加圖像,flash,圖像域按鈕去掉,在fckconfig.js中大約78行配置那些數組中的值就像當於界面上的一個功能,你可以強行把每組值試出來代表什麼。 到此安裝FCKeditor就完成了,相關詳細配置你可以看FCKeditor-2.3.zip,(jsp,FCKeditor整合包)資料夾中web/_samples目錄下的範例。 |