struts2文件上传

原文链接: https://my.oschina.net/u/2551035/blog/636120

首先写JSP页面代码

文件上传

   

    用户名:

    文件:

   

   

action代码

public class FileUploada extends ActionSupport {

	// 上传的文件
	private File file1;
	// 上传的文件名
	private String file1FileName;
	// 上传的文件类型
	private String file1ContentType;

	public void setFile1(File file1) {
		this.file1 = file1;
	}

	public void setFile1FileName(String file1FileName) {
		this.file1FileName = file1FileName;
	}

	public void setFileContentType(String fileContentType) {
		this.file1ContentType = file1ContentType;
	}

	@Override
	public String execute() throws Exception {
		String path = ServletActionContext.getServletContext().getRealPath(
				"/upload");

		System.out.println(this.file1FileName);
		File destFile = new File(path,file1FileName);

		
		
		FileUtils.copyFile(file1, destFile);
		return SUCCESS;
	}
}


struts配置文件xml


		
		
		
			
			
				
				
				txt,jpg,jar
				
				
				
			
			
			/e/success.jsp
			
			
			/e/error.jsp
		




转载于:https://my.oschina.net/u/2551035/blog/636120

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