FCKeditor使用说明

开发环境: 
     Tomca5.0    
     MyEclipse 6.
     FCKeditor版本 FCKeditor_2.6.3.zip
     FCK连接java包:fckeditor-java-2.4.1-bin.zip
开始测试:
 
第一步:
     新建工程,名称为 FCKeditor
第二步:
     解压 FCKeditor_2.6.3.zip 包中的 edit 文件夹到项目中的 WebRoot/fck目录
     解压 FCKeditor_2.6.3.zip 包中的 fckconfig.js、fckeditor.js、fckstyles.xml、fcktemplates.xml 文件夹到项目中的WebRoot/fck目录
     解压 fckeditor-java-2.4.1-bin.zip 包中的 /web/WEB-INF/lib 下的两个 jar 文件到项目的 WebRoot/WEB-INF/lib 目录
     刷新一下工程,有一个文件会出错,不管它是什么错,将错误信息清除
第三步:
     建立一个HTML文件:
     Head中加入
         <script type="text/javascript" src="fck/fckeditor.js"></script>
     Body中加入
         <script type="text/javascript">
              var oFCKeditor = new FCKeditor('FCKeditor1');   // 声明一个FCKeditor实例,名字为FCKeditor1
              oFCKeditor.BasePath = "/FCKeditorProject/fckeditor/";      //FCKeditor的基准路径
              oFCKeditor.Create();    //
         </script>
第四步:
     Tomcat中运行测试

你可能感兴趣的:(java,html,tomcat,MyEclipse,fckeditor,测试)