我正在寻找使用Apache FileUploader的一个非常基本的例子 - 实际上有组件的解释。我在谷歌上找到的所有东西似乎都没有任何理解而直接进入代码。
已经安装了这些库,我已经开始使用了它,但我只是不理解代码而且我讨厌成为一个复制编码器。
用于从HTML表单上传单个文件。不需要多个文件(大多数教程也关注这些文件)。
任何帮助或链接都会有用,谢谢。
答案 0 :(得分:1)
http://www.tutorialspoint.com/jsp/jsp_file_uploading.htm对文件上传有必要的评论和解释。
答案 1 :(得分: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