`

FCKeditor2.4.1 For Java使用2(上传不了图片和Flash)

阅读更多

参考了wanghua305的文章解决了上传图片时出现的Security error. You probably don't have enough permissions to upload. Please check your server对话框(Struts2中使用时出现的这个问题,其他的就不知道了)

网址:http://wanghua305.iteye.com/blog/343093

 

原因:struts2对request进行了封装,所以当fck的request.getinputStream的时候就会出错.修改的方法就是对filtermapping的路径进行修改。

解决方法如下:

将下面代码中的“/*”

web.xml(原)

<filter-mapping>    
<filter-name>struts2</filter-name>    
<url-pattern>/*</url-pattern>    
</filter-mapping>

改为:“*.action”。
另外,jsp页面上面用到了struts2的tag,那么就要增加一个*.jsp的url-pattern。

修改后如下:

<filter-mapping>      
  <filter-name>struts2</filter-name>      
  <url-pattern>*.action</url-pattern>      
</filter-mapping>      
  
<filter-mapping>      
  <filter-name>struts2</filter-name>      
  <url-pattern>*.jsp</url-pattern>      
</filter-mapping>

 

如果你用到struts2的datetimepicker标签发现他不能用了
你查看源代码的时候会发现有如下代码:

<link rel="stylesheet" href="/para/struts/xhtml/styles.css" type="text/css"/> 
<script language="JavaScript" type="text/javascript"> 
// Dojo configuration 
djConfig = { 
baseRelativePath: "/para/struts/dojo", 
isDebug: false, 
bindEncoding: "utf-8", 
debugAtAllCosts: true // not needed, but allows the Venkman debugger to work with the includes 
}; 
</script> 
<script language="JavaScript" type="text/javascript" 
src="/para/struts/dojo/dojo.js"></script> 
<script language="JavaScript" type="text/javascript" 
src="/para/struts/simple/dojoRequire.js"></script> 

 这时加上以下过滤后问题解决:

<filter-mapping> 
<filter-name>struts2</filter-name> 
<url-pattern>/struts/*</url-pattern> 
</filter-mapping>

 当然要用datetimepicker标签在<head>中还要加入 <s:head theme="ajax"/>  

 

 总结:

      我在上传时遇到的Security error. You probably don't have enough permissions to upload. Please check your server.这个问题而不能上传,只要修改web.xml文件中的struts配置即可

 原web.xml:

<filter-mapping>    
<filter-name>struts2</filter-name>    
<url-pattern>/*</url-pattern>    
</filter-mapping>

 修改后:

<filter-mapping>      
  <filter-name>struts2</filter-name>      
  <url-pattern>*.action</url-pattern>      
</filter-mapping>      
  
<filter-mapping>      
  <filter-name>struts2</filter-name>      
  <url-pattern>*.jsp</url-pattern>      
</filter-mapping>

<filter-mapping> 
<filter-name>struts2</filter-name> 
<url-pattern>/struts/*</url-pattern> 
</filter-mapping>

 

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

 

分享到:
评论

相关推荐

    FCKeditor2.4.1版本(JAVA版)配置

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

    fckeditor2.4.1配置

    `FCKConfig.FullPath`定义了编辑器相对于服务器根目录的路径,这对于文件上传和图片浏览至关重要。另外,`FCKConfig.AllowFileManager`和`FCKConfig.AllowFlashUpload`等字段控制是否开启文件管理功能。 4. **样式...

    fckeditor-java-2.4.1-bin

    "Fckeditor-java-2.4.1-bin"是一个用于Java平台的富文本编辑器软件包,主要功能是为Web应用程序提供一个强大的在线文本编辑工具。FCKeditor是一款开源的JavaScript库,它允许用户在网页上创建类似桌面应用的文本编辑...

    fckeditor-java-core-2.4.1.jar

    fckeditor-java-core-2.4.1.jar

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

    《FCKeditor Java版2.4.1对JDK 1.4的兼容性改造详解》 FCKeditor是一款流行的开源在线文本编辑器,广泛应用于Web应用中的富文本编辑功能。其Java版本(FCKeditor-java)使得开发者可以将这款编辑器无缝集成到Java...

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

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

    fckeditor-java-core-2.4.1

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

    fckeditor-java-2.4源码

    本文将重点探讨FCKeditor 2.4的Java版本源码,帮助开发者深入了解其内部工作原理,以便于更好地集成和定制。 FCKeditor 2.4是该编辑器的一个重要版本,它支持多种浏览器,并提供了许多增强的功能和改进。在Java环境...

    FCKEditor 2.6 for java jsp

    5. **Ajax集成**:通过Ajax技术,FCKEditor实现了无刷新的文件和图片上传,减少了用户等待时间,提高了用户体验。同时,Ajax还用于动态加载内容和实时预览,使得编辑过程更加流畅。 三、使用FCKEditor 2.6 for Java...

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

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

    fckeditor-java-2.4.1 jdk1.4修改版

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

    fckeditor-java-demo-2.4.1.rar_DEMO_fckeditor_fckeditor demo_fcke

    4. 处理文件上传:FCKeditor支持文件和图片的上传,开发者需要编写后端代码来接收并处理这些上传请求,包括保存文件、返回文件URL等。 四、图片处理 FCKeditor提供了便捷的图片管理功能,用户可以直接在编辑器中...

    fckeditor-java-2.4.1-src

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

    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-demo-2.4.1.war

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

    FCKeditor配置for java

    **FCKeditor配置for Java** FCKeditor是一款流行的开源富文本编辑器,广泛应用于Web开发中,为用户提供类似于Microsoft Word的界面,使用户能够轻松创建和编辑HTML内容。在Java Web开发环境中,集成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 分享几个包,让你学习有成。加油

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

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

Global site tag (gtag.js) - Google Analytics