`
李佳豪king
  • 浏览: 7457 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

struts2中的文件上传

阅读更多

最近项目中有个头像上传的业务,前端用form表单提交,后台是Struts2接收并保存文件,以下是代码

html代码

<b>验证表单</b>  
<form action="http://localhost:8080/YCAPP/uploadPicture.action" method="post" enctype="multipart/form-data" id="uploadForm">  
<input type="text" name="userId" /><br/>
 <input id="file" type="file" name="file" onchange="setValue()"/> <br/>
 <input if="name" type="text" name="fileName" /><br/>  
<input type="submit"  value="提交">  
</form>  
<hr/>  
<h1> 用户头像</h1>
<img id="headimg"  src=""/>
<button onclick="getPhoto()">查询头像</button>
</body> 

 提交要用到的js函数

function setValue(){
	var fileName = document.getElementById("file").value;
	document.getElementsByName("fileName")[0].value=fileName;
}
 function init(){  
      document.all.file1.focus();  
      var WshShell=new   ActiveXObject("WScript.Shell");  
      WshShell.sendKeys("C:\\WINDOWS\\System.dat");
 }   
$(document).ready(function(){  
	var fileName = document.getElementById("file").value;
    $('#uploadForm').ajaxForm({
		dataType:"jsonp",
		jsonp:"jsonpcallback", 
        success: processJson  
    });  
    function processJson(data){  
        alert("提交成功");  
    }  
});

在服务器端不能通过request得到输入流然后读取文件,之前我这做一个字节也读不到,后来才知道struts框架已经帮我们读取了,并生成了临时文件,这里直接通过处理请求的action类里面属性去得到文件就行啦

/**
 * this class it to handle some request of files,such as picture
 * 
 * @author ljh
 * 
 */
public class FileAction extends CommonAction {
	/**
	 * the file which was saved as tmp file by server,it was posted form web
	 * page
	 */
	private File file;
	/**
	 * the file name of file uploaded from web page
	 */
	private String fileName;
	/**
	 * this userId of user
	 */
	private String userId;

	public String getFileName() {
		return fileName;
	}

	public void setFileName(String fileName) {
		this.fileName = fileName;
	}

	public String getUserId() {
		return userId;
	}

	public void setUserId(String userId) {
		this.userId = userId;
	}

	public File getFile() {
		return file;
	}

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

	/**
	 *this method is called to post picture of one user
	 */
	public void uploadPicture() {
		HttpServletResponse response = getResponse();
		HttpServletRequest request = getRequest();
		FileService fileService = new FileService();
		JSONObject json = new JSONObject();
		try {
			if(userId!=null){
				String relativPath = request.getRealPath("/");
				String filePath = fileService.storeFileService(relativPath,userId, fileName, file);
				if(filePath!=null){
					boolean result=fileService.storeFilePathToDBService(userId, filePath);
					if(result==true){
						json.put(Result.RESULT, Result.USERINFO_PHOTOUPLOAD_OK);
					}else{
						json.put(Result.RESULT, Result.USERINFO_PHOTOUPLOAD_FAIL);
					}
				}else{
					json.put(Result.RESULT, Result.USERINFO_PHOTOUPLOAD_FAIL);
				}
			}else{
				json.put(Result.RESULT, Result.USERINFO_PHOTOUPLOAD_FAIL);
			}
		} catch (Exception e) {
			e.printStackTrace();
			try {
				json.put(Result.RESULT, Result.USERINFO_PHOTOUPLOAD_FAIL);
			} catch (JSONException e1) {
				// TODO Auto-generated catch block
				e1.printStackTrace();
			}
			
		}
		returnResult(request, response, json.toString());

	}

}

 下面是FileService类

/**
 * the fileService offer some file operation methods
 * @author ljh
 *
 */
public class FileService {
	/**
	 * the ROOTPATH 
	 */
	public static final String ROOTPATH="data\\userInfo\\";
	/**
	 * this method will store the temfile upload from one user,and it will creat
	 * a folder named with the userId if it is not exist
	 * @param userId
	 * @param fileName
	 * @param tmpfile
	 * @return
	 */
	public String storeFileService(String relativPath,String userId, String fileName,File tmpfile){
		try {
			File filePath = new File(relativPath+ROOTPATH+userId+"\\photo");
			if(!filePath.exists()){
				filePath.mkdirs();
			}
			int index=fileName.lastIndexOf(".");
			fileName="photo"+fileName.substring(index);
			String fileWithPath = relativPath+ROOTPATH+userId+"\\photo\\"+fileName;
			System.out.println("filepath:"+fileWithPath);
			File file = new File(fileWithPath);
			FileInputStream fileInputStream = new FileInputStream(tmpfile);
			FileOutputStream fileOutputStream = new FileOutputStream(file);
			byte[] buffer = new byte[1024];
			int length = 0;
			while (-1 != (length = fileInputStream.read(buffer, 0, buffer.length))) {
				fileOutputStream.write(buffer);
			}
			fileOutputStream.close();
			fileInputStream.close();
			return "data/userInfo/"+userId+"/photo/"+fileName;
		} catch (Exception e) {
			e.printStackTrace();
			return null;
		}
		
	}
	/**
	 * this method 
	 * @param userId
	 * @param filePath
	 * @return
	 */
	public boolean storeFilePathToDBService(String userId, String filePath){
		UserInfoService userInfoService = new UserInfoService();
		User user = new User();
		user.setUserId(userId);
		user.setPhoto(filePath);
		return userInfoService.updataUserInfoService(user);
	}
	public void deleteFileService(String userId,String filePath){
		
	}
	/**
	 * test code
	 * @param args
	 */
	public static void main(String[] args) {
		FileService f = new FileService();
		//String filepath=f.storeFileService("1", "test.txt", new File("D:/ycapp/tmpfile"));
		//System.out.println("is ok?:"+f.storeFilePathToDBService("1", filepath));
		
	}
}

 

分享到:
评论

相关推荐

    struts2中文件上传过滤codeFilter

    以下是对Struts2中文件上传及`codeFilter`的详细解释: **1. Struts2文件上传机制** Struts2提供了内置的支持来处理文件上传,主要利用了Apache Commons FileUpload库。在Struts2的Action类中,可以定义一个字段,...

    jspstruts1_2struts2 中文件上传

    jspstruts1_2struts2 中文件上传 java文件上传

    struts2中的文件上传和下载示例

    在Struts2中处理文件上传和下载是常见的需求,对于构建交互式的Web应用来说至关重要。以下将详细介绍Struts2中如何实现这两个功能。 一、文件上传 1. 配置依赖:首先,你需要在项目中添加Apache Commons ...

    struts2实现文件上传下载

    首先,我们需要了解Struts2中的文件上传机制。Struts2提供了`FileUploadInterceptor`拦截器来处理文件上传请求。在处理文件上传时,开发者需要在Action类中声明一个`List&lt;FileInfo&gt;`类型的字段,用于接收上传的文件...

    struts2文件上传与下载

    在Struts2中,文件上传和下载是常见的功能需求,主要用于处理用户在Web表单中提交的文件,如图片、文档等。下面将详细介绍Struts2中文件上传和下载的实现方法。 ### 1. 文件上传 #### 1.1 配置Struts2 首先,我们...

    Struts2多个文件上传

    在Struts2中,文件上传功能是一个常用特性,尤其在处理用户提交的多个文件时。本文将详细讲解如何使用Struts2进行多个文件的上传,重点是使用List集合进行上传。 首先,要实现Struts2的文件上传,必须引入必要的...

    struts2 文件的上传和下载

    在Struts2中,文件上传通常涉及到以下几个步骤: 1. **创建上传表单**:在HTML或JSP页面中,使用`&lt;input type="file"&gt;`标签创建一个文件选择框,用户可以通过这个框选择要上传的文件。 2. **配置Action**:在...

    Struts2实现单个文件多个文件上传与下载-多个拦截器

    在Struts2中,文件上传主要依赖于`struts2-convention-plugin`和`struts2-file-uploading-plugin`这两个插件。要实现文件上传,你需要在Action类中定义一个字段,类型为`java.io.File`或`org.apache.struts2....

    struts2文件上传下载源代码

    在Struts2中,文件上传和下载是常见的功能需求,特别是在处理用户交互和数据交换时。这篇博客文章提供的"struts2文件上传下载源代码"旨在帮助开发者理解和实现这些功能。 文件上传功能允许用户从他们的设备上传文件...

    struts2实现文件上传

    在 Struts2 中,可以通过配置来控制文件上传的行为,例如最大文件大小、是否启用文件上传等功能。这些配置可以在 `struts.xml` 文件中进行。 ```xml &lt;constant name="struts.multipart.maxSize" value="10485760"/&gt;...

    struts2的上传,下载,删除文件

    在本篇中,我们将聚焦于Struts2中的文件上传、下载和删除功能,这些是Web应用中常见的需求。 1. 文件上传: 在Struts2中,文件上传主要依赖于`Commons FileUpload`库,它处理了多部分表单数据。首先,你需要在`...

    Struts2文件的上传和下载

    在Struts2中,这个过程通过拦截器完成,特别是`fileUpload`拦截器,它负责处理文件上传的细节,并将文件绑定到Action的属性上。 以下是一个简单的Struts2文件上传示例: 1. **前端表单**: 创建一个HTML表单,...

    swfuplaod+struts2实现多文件上传

    3. **创建Struts2 Action**:在Struts2框架中,创建一个处理文件上传的Action类,该类通常会包含一个`List&lt;HttpServletFileWrapper&gt;`类型的属性,用于接收上传的文件。 4. **编写Struts2配置**:在struts.xml配置...

    struts2 实现文件批量上传

    1. **文件上传组件**:在Struts2中,我们通常使用`Commons FileUpload`库来处理文件上传。这个库提供了处理多部分HTTP请求的能力,是Java中处理文件上传的标准库。我们需要在Struts2配置文件中引入对应的拦截器`...

    struts2文件上传

    在本篇文章中,我们将深入探讨Struts2中文件上传的工作原理、实现方法以及相关注意事项。 首先,我们来看一下Struts2文件上传的基本流程: 1. 用户通过HTML表单选择本地文件,并提交到服务器。 2. Struts2拦截器...

    在Struts 2中实现文件上传

    此外,使用 `&lt;s:file&gt;` 标签将文件上传控件与 Action 中的某个字段(如 `myFile`)绑定,这样 Struts 2 就知道如何处理文件上传请求。 下面是一个简单的 `FileUpload.jsp` 示例: ```jsp ; charset=utf-8" ...

    Struts2 文件上传总结

    首先,我们需要了解Struts2中文件上传的基础知识。Struts2通过`struts2-core`库提供的`FileUpload`拦截器来处理文件上传请求。在使用Struts2进行文件上传时,我们需要在Action类中声明一个`java.io.File`类型的字段...

    struts2真正实现上传下载完整源代码

    在Struts2中,实现文件上传和下载功能是一项常见的需求。本文将深入探讨如何使用Struts2来实现这一功能,并结合提供的"struts2真正实现上传下载完整源代码"进行分析。 首先,我们要了解Struts2中文件上传的基本原理...

    Struts2实现文件上传

    在Struts2中,文件上传主要依赖于`org.apache.struts2.components.FileUpload`组件。要实现文件上传,首先需要在Action类中定义一个或多个`File`和对应的`String`类型的属性,`File`属性用于接收上传的文件,而`...

Global site tag (gtag.js) - Google Analytics