struts2文件上传

前台准备

  • 表单必须是post提交
  • 提交类型为enctype,多段式提交
  • 使用组件

后台接受

private File photo;
private String photoFileName;
get
set

photo.renameTo(new File("C:/ypload/test.jpg"));
public void setPhoto(File photo){
this.photo=photo;
}
public File getPhoto(){
return photo;
}

你可能感兴趣的:(struts2文件上传)