0

我已经在 Struts2 中成功上传了一个文件,代码如下:

String filePath = servletRequest.getSession().getServletContext().getRealPath("/") + "WEB-INF\\files\\";
            fileToCreate = new File(filePath, getUserDocFileName());

            FileUtils.copyFile(this.userDoc, fileToCreate);

问题是文件被复制到 \build\web\WEB-INF\files 文件夹。现在,当我尝试使用结果类型流检索文件时:

String filePath = servletRequest.getSession().getServletContext().getRealPath("/") + "WEB-INF\\files\\";
File file = new File(filePath + getFileName());
            try {
                inputStream = new DataInputStream(new FileInputStream(file));
            } catch (FileNotFoundException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }



<action name="loadFile" class="com.app.Controller" method="loadFile">
            <result name="success" type="stream">
                <param name="contentType">${fileType}</param>
                <param name="inputName">inputStream</param>
                <param name="contentDisposition">inline;filename="${fileName}"</param>
                <param name="bufferSize">1024</param>
            </result>
            <interceptor-ref name="defaultStack"/>
        </action>

我得到以下异常:

java.lang.IllegalArgumentException: Can not find a java.io.InputStream with the name [inputStream] in the invocation stack. Check the <param name="inputName"> tag specified for this action.

关于这个问题的任何帮助?

FileUtils.copyFile方法与设置struts.multipart.saveDir属性相同吗?

如何将文件放在 WEB-INF 文件夹中而不是在 build 文件夹中?

每当我再次构建我的项目时,这些文件都不应该被删除。我想稍后将它部署到 OpenShift。

4

1 回答 1

0

尝试从 servlet 上下文中获取它

InputStream is = ServletActionContext.getServletContext().getResourceAsStream("/WEB-INF/files/" + fileName);
于 2013-10-02T21:09:37.020 回答