首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

使用struts文件下传标签时报 argument type mismatch

2012-10-06 
使用struts文件上传标签时报 argument type mismatch使用struts文件上传标签时报 argument type mismatch1

使用struts文件上传标签时报 argument type mismatch
使用struts文件上传标签时报 argument type mismatch

1.必须在html:form 中加上如下 enctype="multipart/form-data"


2.要把method改成post


EG:

FROM:
public class CustomerForm extends ActionForm {

FormFile file;

public FormFile getFile() {
return file;
}

public void setFile(FormFile file) {
this.file = file;
}
}

JSP:
<form action="/admin/customer.do" method="post" enctype="multipart/form-data">
<input type="file" name="file"/>

ACTION:
FormFile filedata = customerForm.getFile();

热点排行