0

我正在寻找一个使用 Apache FileUploader 的非常基本的示例——它实际上对组件进行了解释。我在谷歌上能找到的所有东西似乎都直接潜入了代码中,没有任何理解。

库已经安装,我已经尝试过了,但我只是不理解代码,我讨厌成为一个复制编码器。

用于从 HTML 表单上传单个文件。不需要多个文件(大多数教程也关注)。

任何帮助或链接都会很有用,谢谢。

4

2 回答 2

1

http://www.tutorialspoint.com/jsp/jsp_file_uploading.htm对文件上传有必要的评论和解释。

您还可以查看如何使用 JSP/Servlet 将文件上传到服务器?

于 2013-03-05T19:28:46.333 回答
0
  <form name="form1" action="forward.jsp" method="post" >
      File Upload:<input type="file" name="upload" size="100"/>
                  <input type="submit" value="submit" size="100"/>

   </form>

在 forward.jsp 中

out.println(request.getparameter(upload));//returns filename only rather than whole path

于 2013-03-06T03:46:48.820 回答