关于使用jspSmartUpload组件后request.getParameter()无法读出表单属性的问题
使用jspSmartUpload组件最大的问题就是,无法用request.getParameter()无法读出表单属性的值。原因是在form表单里加了ENCTYPE="multipart/form-data"这么一句话,那么提交过去的数据可能就变成一种二进制的,jsp页面无法读取的格式了。
使用jspSmartUpload组件最大的问题就是,无法用request.getParameter()无法读出表单属性的值。原因是在form表单里加了ENCTYPE="multipart/form-data"这么一句话,那么提交过去的数据可能就变成一种二进制的,jsp页面无法读取的格式了。
Tags: SmartUpload 上传
org.apache.commons.fileupload.FileUploadBase$InvalidContentTypeException: the request doesn't contain a multipart/form-data or multipart/mixed stream, content type header is null
jsp页面:
<form name="myform" id="myform" enctype="multipart/form-data"
method="post" onsubmit="return picForm_Validator(this)">
<p align="center">
文件上传
<input type="File" name="fileupload" value="upload" />
<input type="submit" value="上传">
jsp页面:
<form name="myform" id="myform" enctype="multipart/form-data"
method="post" onsubmit="return picForm_Validator(this)">
<p align="center">
文件上传
<input type="File" name="fileupload" value="upload" />
<input type="submit" value="上传">
Tags: 上传
struts的DownloadAction使用后发现,当我提取中文名的文件时,会转换成乱码(弹出的对话框为乱码),可能还没有研究明白,所以考虑用smartupload和commons-fileupload。
使用smartupload上传过大文件,或者多文件的时候可能出现CPU或内存占用过高的问题.并且:只有重新启动容器才能恢复正常!后决定用用commons-fileupload.
下载:下载地址:http://jakarta.apache.org/site/downloads/downloads_commons-fileupload.cgi,包内包含了API文档.(还有commons-beanutils) 在项目中添加下载的组件。
注意事项:
1.不要在jsp页面中使用struts得标签,使用后,通过正常方式无法接收到相关参数。(不用<html:form>)
使用smartupload上传过大文件,或者多文件的时候可能出现CPU或内存占用过高的问题.并且:只有重新启动容器才能恢复正常!后决定用用commons-fileupload.
下载:下载地址:http://jakarta.apache.org/site/downloads/downloads_commons-fileupload.cgi,包内包含了API文档.(还有commons-beanutils) 在项目中添加下载的组件。
注意事项:
1.不要在jsp页面中使用struts得标签,使用后,通过正常方式无法接收到相关参数。(不用<html:form>)
Tags: fileupload 上传
复制内容到剪贴板 程序代码
<!--嵌入FCK编辑器-->
<%
FCKeditor oFCKeditor ;
oFCKeditor = new FCKeditor( request, "content" ) ;
oFCKeditor.setBasePath("") ;
oFCKeditor.setValue(news.getContent());
out.println( oFCKeditor.create() ) ;
%>
<%
FCKeditor oFCKeditor ;
oFCKeditor = new FCKeditor( request, "content" ) ;
oFCKeditor.setBasePath("") ;
oFCKeditor.setValue(news.getContent());
out.println( oFCKeditor.create() ) ;
%>
FCKeditor编辑器的配置文件是fckconfig.js,其中有对编辑器各种默认属性的设置。以下是fckeditor与java集成使用时上传文件的设置(需要注意的是编辑器不会自动创建文件上传的文件夹,需要在项目的根目录中手动添加),将fckeditor.js文件中以下几个属性原来的值修改为如下设置: