1

我知道有很多 jquery 插件可用于文件上传。但它只是显示了我们如何在 jsp 页面中添加它。但我想知道我们如何处理在后端使用这些插件选择的文件。对于例如,我使用带有 struts2 的 spring。所以我想从我的 jsp 中将这些文件发送到我的操作类中,并将其存储在服务器位置。任何人都知道我该怎么做。

4

1 回答 1

1

userImage<file>标签 的名称

 public class FileUploadAction extends ActionSupport{
        private File userImage;
        private String userImageContentType;
        private String userImageFileName;

        private HttpServletRequest servletRequest;

        public String execute() {
            try {
                String filePath = "yourPath";
                File fileToCreate = new File(filePath, this.userImageFileName);

                FileUtils.copyFile(this.userImage, fileToCreate);
            } catch (Exception e) {
                e.printStackTrace();
                addActionError(e.getMessage());

                return INPUT;
            }
            return SUCCESS;
        }

    }

本教程

本教程讲解多文件上传usinf List

于 2012-07-14T14:35:38.763 回答