FileNotFoundException-Struts2文件上传 [英] FileNotFoundException - Struts2 File Upload

查看:111
本文介绍了FileNotFoundException-Struts2文件上传的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用Struts2上载文件时出现奇怪的FileNotFoundException.这是JSP的一部分:

Strange FileNotFoundException while uploading file using Struts2. This is a part of JSP:

<a:form action="/FileUploadServletAction.action" method="post" enctype="multipart/form-data">
<a:file name="fileUpload" label="File"/>
<a:submit/>

这是execute()方法,用于将上传的文件从临时位置复制到实际位置:

This is the execute() method, to copy uploaded file from temporary location to actual location:

public String execute() throws Exception{
try {
        String filePath = "c:/foo";
        System.out.println("Server path:" + filePath);
        File fileToCreate = new File(filePath, this.fileUploadContentType);
        FileUtils.copyFile(this.fileUpload, fileToCreate);
    } catch (Exception e) {
        e.printStackTrace();
        addActionError(e.getMessage());
        return INPUT;
    }

    return SUCCESS;
}

这是struts.xml的一部分,它配置上述Action类:

This is my portion of struts.xml which configures above Action class:

<action name="FileUploadServletAction"
        class="com.test.FileUploadServletAction">
        <result name="input">/jsp/upload.jsp</result>
        <result name="success">/jsp/upload.jsp</result>
        <result name="error">/jsp/error.jsp</result>
</action>

但是当我运行时,我得到了这个异常:

But when I run I get this exception:

java.io.FileNotFoundException: Source 'E:\Foo\Projects\Foo\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\FooProject\upload_1ec6cc50_75d7_482f_83be_fe4185999973_00000000.tmp' does not exist
at org.apache.commons.io.FileUtils.copyFile(FileUtils.java:1074)
at org.apache.commons.io.FileUtils.copyFile(FileUtils.java:1038)

INFO: Removing file fileUpload E:\Foo\Projects\Foo\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\FooProject\upload_1ec6cc50_75d7_482f_83be_fe4185999973_00000000.tmp

谁能让我知道为什么Struts无法找到所创建的临时文件?如果您需要其他信息,请告诉我.

Can anyone let me know why Struts is not able to find temporary file which is created? Please let me know if you need additional information.

推荐答案

我认为您缺少getter和setter方法,我不知道您是否定义了?

I think you are missing getter and setter methods, I don't know have you defined or not?

JSP代码:

<form action="FileUploadServletAction" method="post" enctype="multipart/form-data">
  <label>File:</label><input type="file" name="userKey"/>
  <input type="image" src="images/login-btn.jpg" alt="submit" width="103" height="42"/>
</form>  

操作代码:

//In FileUploadServletAction
private File userKey;  //file name which is on JSP
private String userKeyContentType;
private String userKeyFileName;  

//getter, setter  
public File getUserKey() 
{
    return userKey;
}

public void setUserKey(File userKey) 
{
    this.userKey = userKey;
}

public String getUserKeyFileName()
{
    return userKeyFileName;
} 

public String getUserKeyContentType() 
{
    return userKeyContentType;
}

public void setUserKeyContentType(String userKeyContentType)
{
    this.userKeyContentType = userKeyContentType;
}

public void setUserKeyFileName(String userKeyFileName)
{
    this.userKeyFileName = userKeyFileName;
}  

现在,execute()方法

//In FileUploadServletAction
public String execute() throws Exception{
 try {
      String filePath = request.getSession().getServletContext().getRealPath("/");           
      File fileToCreate = new File(filePath, this.userKeyFileName);
      FileUtils.copyFile(this.userKey, fileToCreate);
  } catch (Exception e) {
    e.printStackTrace();
    addActionError(e.getMessage());
    return INPUT;
 }

 return SUCCESS;
} 

这篇关于FileNotFoundException-Struts2文件上传的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆