Struts 2 File Upload and Save Tutorial with Example
- By Viral Patel on December 30, 2009
Welcome to Part-6 of 7-part series of Struts2 Framework. In previous part we went through basics of Struts2 Interceptors. Also we created a custom interceptor and integrated it through Struts2 application.
It is strongly recommended to go through previous articles in case you new to Struts2 Framework.
Struts 2 Tutorials
- Part 1: Introduction to Struts 2
- Part 2: Create Hello World Application in Struts 2
- Part 3: Struts 2 Validation Framework Tutorial with Example
- Part 4: Struts 2 Tiles Plugin Tutorial with Example
- Part 5: Struts 2 Interceptors Tutorial with Example
- Part 6: Struts 2 File Upload and Save Example
- Part 7: Struts 2 Ajax Tutorial with Example
Today we will see how to do File Upload in Struts2. We will use Struts2 built-in FileUploadInterceptor in our example to upload the file. The Struts 2 File Upload Interceptor is based on MultiPartRequestWrapper, which is automatically applied to the request if it contains the file element.
Required JAR file
Before we start, we need to make sure commons-io.jar file is present in the classpath. Following are the list of required Jar files.

Getting Started
In order to add file upload functionality we will add an action class FileUploadAction to our project. Create file FileUploadAction.java in package net.viralpatel.struts2.
FileUploadAction.java
package net.viralpatel.struts2;
import java.io.File;
import javax.servlet.http.HttpServletRequest;
import org.apache.commons.io.FileUtils;
import org.apache.struts2.interceptor.ServletRequestAware;
import com.opensymphony.xwork2.ActionSupport;
public class FileUploadAction extends ActionSupport implements
ServletRequestAware {
private File userImage;
private String userImageContentType;
private String userImageFileName;
private HttpServletRequest servletRequest;
public String execute() {
try {
String filePath = servletRequest.getSession().getServletContext().getRealPath(“/”);
System.out.println("Server path:" + filePath);
File fileToCreate = new File(filePath, this.userImageFileName);
FileUtils.copyFile(this.userImage, fileToCreate);
} catch (Exception e) {
e.printStackTrace();
addActionError(e.getMessage());
return INPUT;
}
return SUCCESS;
}
public File getUserImage() {
return userImage;
}
public void setUserImage(File userImage) {
this.userImage = userImage;
}
public String getUserImageContentType() {
return userImageContentType;
}
public void setUserImageContentType(String userImageContentType) {
this.userImageContentType = userImageContentType;
}
public String getUserImageFileName() {
return userImageFileName;
}
public void setUserImageFileName(String userImageFileName) {
this.userImageFileName = userImageFileName;
}
@Override
public void setServletRequest(HttpServletRequest servletRequest) {
this.servletRequest = servletRequest;
}
}
In above class file we have declared few attributes:
private File userImage;-> This will store actual uploaded Fileprivate String userImageContentType;-> This string will contain the Content Type of uploaded file.private String userImageFileName;-> This string will contain the file name of uploaded file.
The fields userImageContentType and userImageFileName are optional. If setter method of these fields are provided, struts2 will set the data. This is just to get some extra information of uploaded file. Also follow the naming standard if you providing the content type and file name string. The name should be private File uploadedFile, the content type will be uploadedFileContentType and file name uploadedFileFileName.
Also note in above action class, we have implemented interface org.apache.struts2.interceptor.ServletRequestAware. This is to get servletRequest object. We are using this path to save the uploaded file in execute() method. We have used FileUtil.copyFile() method of commons-io package to copy the uploaded file in root folder. This file will be retrieved in JSP page and displayed to user.
The JSPs
Create two JSP file in WebContent folder. UserImage.jsp will display a form to user to upload image. On submit, the file will be uploaded and saved on server. User will be sent to SuccessUserImage.jsp file where File details will be displayed. Copy following code into it.
UserImage.jsp
<%@ page contentType="text/html; charset=UTF-8"%> <%@ taglib prefix="s" uri="/struts-tags"%> <html> <head> <title>Upload User Image</title> </head> <body> <h2>Struts2 File Upload & Save Example</h2> <s:actionerror /> <s:form action="userImage" method="post" enctype="multipart/form-data"> <s:file name="userImage" label="User Image" /> <s:submit value="Upload" align="center" /> </s:form> </body> </html>
SuccessUserImage.jsp
<%@ page contentType="text/html; charset=UTF-8"%> <%@ taglib prefix="s" uri="/struts-tags"%> <html> <head> <title>Success: Upload User Image</title> </head> <body> <h2>Struts2 File Upload Example</h2> User Image: <s:property value="userImage"/> <br/> Content Type: <s:property value="userImageContentType"/> <br/> File Name: <s:property value="userImageFileName"/> <br/> Uploaded Image: <br/> <img src="<s:property value="userImageFileName"/>"/> </body> </html>
Struts.xml entry
Add following entry for FileUploadAction class to struts.xml file.
<action name="userImage" class="net.viralpatel.struts2.FileUploadAction"> <interceptor-ref name="fileUpload"> <param name="maximumSize">2097152</param> <param name="allowedTypes"> image/png,image/gif,image/jpeg,image/pjpeg </param> </interceptor-ref> <interceptor-ref name="defaultStack"></interceptor-ref> <result name="success">SuccessUserImage.jsp</result> <result name="input">UserImage.jsp</result> </action>
Note that in above entry we have specified two parameter to fileUpload interceptor, maximumSize and allowedTypes. These are optional parameters that we can specify to interceptor. The maximumSize param will set the maximum file size that can be uploaded. By default this is 2MB. And the allowedTypes param specify the allowed content types of file which can be uploaded. Here we have specified it to be an image file (image/png,image/gif,image/jpeg,image/pjpeg).
The file upload interceptor also does the validation and adds errors, these error messages are stored in the struts-messsages.properties file. The values of the messages can be overridden by providing the text for the following keys:
- struts.messages.error.uploading – error when uploading of file fails
- struts.messages.error.file.too.large – error occurs when file size is large
- struts.messages.error.content.type.not.allowed – when the content type is not allowed
That’s All Folks
Compile and Execute the project in eclipse and goto link http://localhost:8080/StrutsHelloWorld/UserImage.jsp
Image Upload Screen

Image Upload Screen in case of error

Image Upload Screen on success

Download Source Code
Click here to download Source Code without JAR files (20KB)
Moving On
Struts2 makes life very easy. It was like a piece of cake to implement File Upload with Struts2. In next part we will see Struts2 Ajax Example.
Get our Articles via Email. Enter your email address.
userImageFileName null please help me?
Getting big Null Pointer Exception at line:
fileToCreate = new File(filePath, this.htmlFileName);
However userImage value in debug mode is :
“D:XYZ\workspace_4\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\HTMLToJSP\upload__1d70e13a_13b8a3f0bbd__8000_00000000.tmp”
I got that null issue all the time using glassfish 3.1.2
I switched to tomcat server and it worked fine.
I just changed server to glassfish 3.1.2.1 version and it also worked fine..
I think the issue was with the server.
Just to let u know.. Cheers..
i have executed it …with the code ..
the problem is when i execute the UserImage.jsp after giving every details
and when i click on submit button ,then it goes to SuccessUserImage where it dosnt gives the oproper output …evry fields is empty …(NO OUTPUT)
SOME1 plz help me,,,,,,,
when I am Giving Image file It Is working, but when i am not giving any image, it is not showing error message in UserImage.jsp, But it is returning the UserImage.jsp..
Plz tell me how to show error message in UserImage.jsp
Thanx In Advance
where is photo after upload fie?
I am getting the filename, contentType empty, and having null exception at
File filetocreate = new File(filepath, fileName)
fileName value is null in the action.
thought the filename gets uploaded and displays the file name in jsp file.
Oh Just solve the filename null axception in the action.
the solution is:
whatever you name your file variable, let say
privare File fileUpload;
the ContentType and FileName should be prefixed by the “fileUpload” like below:
private String fileUploadContentType;
private String fileUploadFileName
hope this will help those who are having same problem
Hi Viral –
Have one doubt , is it is possible to configure file upload maximumSize value by programatically. because I have to configure different fileupload maxSize limit for different roles ( users ).
If yes please give some ideas.
Is it is possible to override fileUpload interceptor .
I want the file to be saved in the directory with a seperate file extension.Like if i uploaded a .jpeg or .gif file i want both to be saved in .jpeg format.Is it possible??How?
Thanks Viral,
Very good tutorial.
Joe.
Thank you for sharing code this work for me
I have 1 question how to change by default the path of image upload?
how can i change the path of saved file???or can i save the uploaded file into folder of my application??
When i run your above code , i get the follwoing error :
The type UploadFile must implement the inherited abstract method ServletRequestAware.setServletRequest(HttpServletRequest
I need ur help urgent !
Thanks,
Sanjoy Roy
thanks for this tutoriel, how can i adapt the code in order to upload other file (pdf,txt,…)?