使用smartupload.jar实现文件上传
程序员文章站
2022-03-15 08:45:03
...
前提:将smartupload导入到lib文件夹中。
添加依赖:
在index.jsp页面创建一个用于提交表单
提交的方式建议使用post方法 , get方法有长度限制。
enctype=“multipart/form-data” 表示以字节的方法进行文件上传
<form action="upload" method="post" enctype="multipart/form-data">
上传者:<input type="text" name="uname"><br>
文件:<input type="file" name="myfile"><br>
<input type="submit" value="上传">
</form>
主要的逻辑代码在UploadServlet中编写:
- 创建smartUpload对象
SmartUpload smartUpload = new SmartUpload();
- 初始化
//创建pageContext对象
PageContext pageContext = JspFactory.getDefaultFactory().getPageContext(this,req,resp,null,false,1024,true);
// 在Servlet中获取对象【JspFactory.getDefaultFactory().getPageContext(7个参数)】
/* 7个参数
* Servlet:请求的Servlet【this】
* request:
* response:
* errorPageUrl:错误页面地址
* needsSession:是否需要session
* buffer:以字节为单位的缓冲区
* autoflush:是否自动刷新
* */
smartUpload.initialize(pageContext);
- 设置编码
smartUpload.initialize(pageContext);
- 实现文件上传【给服务器,但是服务器未保存】
smartUpload.upload();
- 获取文件信息
//获取单个文件
File file = smartUpload.getFiles().getFile(0);
/* 获取多个文件
File file = smartUpload.getFiles();
* */
// 获取文件名:
String fileName = file.getFileName();
// 创建文件路径
String url = "uploadfile/"+fileName;
- 文件保存
try {
//File.SAVEAS_VIRTUAL 文件夹存在就保存,没有就创建
file.saveAs(url,File.SAVEAS_VIRTUAL);
} catch (SmartUploadException e) {
e.printStackTrace();
}
// 判断是否保存成功,如果成功,在页面显示该文件
req.setAttribute("fileName",fileName);
- 除文件外的内容获取
String uname = smartUpload.getRequest().getParameter("uname");
System.out.println("uname="+uname);
- 跳转页面
req.getRequestDispatcher("success.jsp").forward(req,resp);
检验是否上传成功?
通过在success.jsp页面上输出该文件来判断该文件是否上传成功!
success.jsp代码:
<body>
<h1>上传成功!</h1>
<img src="uploadfile/${fileName}">
</body>
存在一个疑惑:就是上传的文件是保存在服务器上,项目中没有该文件路径。
在网上看了大佬的解决方式,有兴趣的可以试试! 链接.