2022-11-18 20:44:29
浏览数 (1)
SmartUpload组件:
专门用于实现文件上传及下载的免费组件
SmartUpload组件特点:
1、使用简单:编写少量代码,完成上传下载功能
2、能够控制上传内容
3、能够控制上传文件的大小、类型
4、缺点:目前已停止更新服务
环境准备
使用SmartUpload组件需要在项目中引入jspsmartupload.jar文件
将jspsmartupload.jar 添加到WEB-INFlib目录下
需要设置表单的enctype属性
"><form enctype="multipart/form-data" method="post">
使用SmartUpload组件可以对上传文件的类型进行限制
setAllowedFilesList():允许上传的文件类型
setDeniedFilesList():禁止上传的文件类型
编写上传文件处理页sendFile.jsp
代码语言:javascript
复制<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<img alt="" src="onload/by.jpg">
<form action="dosendFile.jsp" enctype="multipart/form-data" method="post">
<input type="file" name="myfile"><br>
<input type="submit" value="开始上传">
</form>
</body>
</html>
代码语言:javascript
复制<%@page import="com.jspsmart.upload.File"%>
<%@page import="com.jspsmart.upload.SmartUpload"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
//创建SmartUpload对象
SmartUpload su = new SmartUpload();
//初始化
su.initialize(pageContext);
//声明一个File对象 用来接收上传的文件
File file = null;
//设置允许上传的文件类型
su.setAllowedFilesList("jpg,png,gif,");
//设置不允许上传的文件类型
su.setDeniedFilesList("bat,exe,mp4");
//设置单文件大小
su.setMaxFileSize(700000);
//设置总文件大小
su.setTotalMaxFileSize(800000);
//设置编码
su.setCharset("utf-8");
//开始上传
su.upload();
//获取文件集合中的第一个文件
file = su.getFiles().getFile(0);
String filePath = "";
if(!file.isMissing()){
//拼接文件上传到服务器的 路径
filePath = "onload/" file.getFileName();
//上传到服务器 保存到指定路径
file.saveAs(filePath,SmartUpload.SAVE_VIRTUAL);
}
out.print("上传成功");
out.print("<img src='" filePath "'>");
%>
Thank!