`

FCKeditor2.4.1 For Java使用1(下载,配置,演示)

阅读更多

我的环境及开发工具:jdk1.6.0_10+tomcat6.0+myeclipse6.5

1. FCKeditor简介:
      FCKeditor是一个专门使用在网页上属于开放源代码的所见即所得文字编辑器。它志于轻量化,不需要太复杂的安装步骤即可使用。它可和PHP、JavaScript、ASP、ASP.NET、ColdFusion、Java、以及ABAP等不同的编程语言相结合。“FCKeditor”名称中的“FCK” 是这个编辑器的作者的名字Frederico Caldeira Knabben的缩写。FCKeditor 相容于绝大部分的网页浏览器。

2. 下载地址:

下载页面:
             http://sourceforge.net/project/showfiles.php?group_id=75348&package_id=129511
fckeditor-java-2.4.1-bin.zip
             http://switch.dl.sourceforge.net/sourceforge/fckeditor/fckeditor-java-2.4.1-bin.zip
FCKeditor_2.6.4.zip
             http://jaist.dl.sourceforge.net/sourceforge/fckeditor/FCKeditor_2.6.4.zip
fckeditor-java-demo-2.4.1.war
             http://nchc.dl.sourceforge.net/sourceforge/fckeditor/fckeditor-java-demo-2.4.1.war
fckeditor-java-2.4.1-src.zip
             http://jaist.dl.sourceforge.net/sourceforge/fckeditor/fckeditor-java-2.4.1-src.zip

在你的Java Web 项目中用,只要下载fckeditor-java-2.4.1-bin.zip(含Jar包)和fckeditor-java-demo-2.4.1.war(fckeditor文件夹),把fckeditor-java-core-2.4.1.jar粘贴到lib目录下,把fckeditor文件夹放到项目中(比如根目录)

再加上这几个jar包:

fckeditor需要的jar包

3. web.xml配置:

加上:

<servlet>
	<servlet-name>Connector</servlet-name>
	<servlet-class>net.fckeditor.connector.ConnectorServlet</servlet-class>
	<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>   
   	<servlet-name>Connector</servlet-name>
   	<url-pattern>/fckeditor/editor/filemanager/connectors/*</url-pattern>   
</servlet-mapping>

4.在项目的src下建立fckeditor.properties 文件,添加以下代码:

    connector.userActionImpl=net.fckeditor.requestcycle.impl.UserActionImpl

5. 测试:

test.jsp:

<%@ taglib uri="http://java.fckeditor.net" prefix="FCK" %>


<body style="text-align: center;">    
	<div style="text-align: center;width: 600pt">    
	<h2>FckEditor测试</h2>    
	<hr>
	<form action="show.jsp" method="post">    
    	<FCK:editor instanceName="content" height="300px">    		
		</FCK:editor>		   
   		<input type="submit" value="提交"/>    
   		<input type="reset" value="重置"/>    
   	</form>    
	</div>    
  </body>

 

show.jsp:

<body>
    
	${param.content}

  </body>

 

————————————————————————The End——————————————————————————

  • 大小: 9.8 KB
分享到:
评论

相关推荐

    FCKeditor2.4.1版本(JAVA版)配置

    下面我们将详细介绍如何配置和使用FCKeditor2.4.1的JAVA版本。 **1. 下载与解压** 首先,你需要从官方或者其他可信来源下载FCKeditor的JAVA版2.4.1压缩包。下载完成后,将其解压到本地文件系统的一个合适目录,例如...

    fckeditor2.4.1配置

    **FCKeditor 2.4.1 配置详解** FCKeditor 是一款开源的、基于 JavaScript 的富文本编辑器,广泛应用于Web开发中,允许用户在网页上进行类似Word的文本编辑操作。版本2.4.1是其较早的一个稳定版本,尽管现在有更新的...

    fckeditor-java-2.4.1-bin

    5. **源码版本配合**:"fckeditor-java-2.4.1-src"是FCKeditor的源码版本,通常与二进制版本配套使用。开发者可以查看源码,了解其工作原理,进行定制化开发或修复问题。 6. **API使用**:FCKeditor提供了一套详细...

    fckeditor-java-core-2.4.1.jar

    fckeditor-java-core-2.4.1.jar

    fckeditor2.6.4+fckeditor-java-2.4.1配置及中文乱码解决

    包括fckeditor2.6.4+fckeditor-java-2.4.1配置所需资源包及fckeditor-java-2.4.1源码和配置说明文档。 配置中解决了中文乱码,并为上传文件自动创建日期文件夹。

    FCKeditor配置for java

    **FCKeditor配置for Java** FCKeditor是一款流行的开源富文本编辑器,广泛应用于Web开发中,为用户提供类似于Microsoft Word的界面,使用户能够轻松创建和编辑HTML内容。在Java Web开发环境中,集成FCKeditor可以...

    fckeditor-java-2.4.1修改支持jdk1.4

    这些特性在2.4.1版本的FCKeditor-java中可能被使用,导致在JDK 1.4环境下编译失败或运行异常。 在着手修改源码前,我们需要对FCKeditor-java的源代码进行分析,找出使用了JDK 5及以上版本特性的部分。这通常包括...

    fckeditor-java-2.4.1-src.zip_FCKeditor jsp_fckeditor-java_fcked

    在实际应用中,使用FCKeditor-java-2.4.1,开发者需要按照官方文档或提供的示例进行配置,包括设置编辑器的路径、初始化编辑器对象、处理上传文件等功能。同时,为了保证编辑器与服务器端的通信安全,还需要考虑如何...

    fckeditor-java-2.4源码

    集成FCKeditor到Java Web应用中,通常需要在Web应用的`web.xml`配置文件中注册`FCKEditorServlet`,然后在客户端页面上嵌入JavaScript代码来调用服务器端组件。 6. **性能优化** 通过对源码的优化,可以提高...

    fckeditor-java-core-2.4.1

    在使用FCKeditor-java-core-2.4.1时,开发者需要将其引入到他们的Java Web项目中,配置相关的参数,如编辑器的宽度、高度、工具栏布局等,并在需要的地方调用API来初始化和使用编辑器。同时,为了保证安全性和用户...

    fckeditor-java-2.4.1-src.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.

    fckeditor-java-2.4.1-src

    "fckeditor-java-2.4.1-src"是FCKeditor的源代码版本,版本号为2.4.1,这个压缩包包含了开发和定制FCKeditor所需的所有源文件。通过这个源代码,开发者可以深入理解编辑器的工作原理,同时也方便了对编辑器进行功能...

    FCKeditor_2.6.6.zip+fckeditor-java-2.4.1.rar

    FCKeditor_2.6.6.zip+fckeditor-java-2.4.1.rar+fckeditor-java-2.4.1-bin.zip+fckeditor-java-2.4-src.zip+fckeditor-java-demo-2.4.war.zip 分享几个包,让你学习有成。加油

    fckeditor-java-2.4.1 jdk1.4修改版

    fckeditor-java-2.4.1不支持jdk1.4.因需要在1.4版本使用,特修改。 修改后的fckeditor java 2.4.1,支持jdk1.4版本。

    FCKEditor 2.6 for java jsp

    1. **JSP环境支持**:FCKEditor 2.6版本专为Java JSP开发,可以直接在MyEclipse这样的IDE中导入并使用,无需额外配置,大大简化了开发流程。 2. **文件上传**:该版本增强了文件上传功能,允许用户在编辑器中直接...

    FCKeditor_2.6.4+fckeditor-java-2.4.1_BMW修改版

    由官网FCKeditor_2.6.4+fckeditor-java-2.4.1修改。 修改内容有: 1、上传的文件名为中文会变成乱码 2、新建中文目录变乱码(这个好似还有点小问题,不过不影响使用,还是不建议用中文目录) 3、对上传的文件使用...

    fckeditor-java-demo-2.4.1.rar_DEMO_fckeditor_fckeditor demo_fcke

    1. 部署`fckeditor-java-demo-2.4.1.war`:将此WAR文件部署到Java应用服务器,按照服务器的配置说明进行操作,一般只需将其复制到服务器的webapps目录下,服务器会自动进行解压和启动。 2. 引入FCKeditor库:在Java...

    fckeditor-java-demo-2.4.1.war

    "Fckeditor-java-demo-2.4.1.war" 是一个基于Java的Web应用程序示例,主要用于展示FCKeditor的功能。FCKeditor是一个流行的开源富文本编辑器,它允许用户在网页上创建和编辑内容,类似于Microsoft Word的功能。这个...

Global site tag (gtag.js) - Google Analytics