jspsmartupload:
先将smartupload.jar拷贝到WEB-INF/lib下
index.html:
<html>
<head>
<title>文件上传</title>
</head>
<body>
<h2>文件上传</h2>
<form name="myform" enctype="multipart/form-data" method="post" action="UploadDemo.jsp">
<p>文 件 名:<input type="text" name="fileName"></p>
<p>上传文件:<input type="file" name="file" size="20" maxlength="20"></p>
<input type="submit" value="上传">
<input type="reset" value="重置">
</form>
</body>
</html>
upload.jsp:
<%@ page import="com.jspsmart.upload.*" %>
<%@ page contentType="text/html;charset=gb2312"%>
<html>
<head>
<title>文件上传</title>
</head>
<body>
<h2>文件上传</h2>
<jsp:useBean id="smart" scope="page" class="com.jspsmart.upload.SmartUpload" />
<%
// 计算文件上传个数
int count = 1;
// 上传的初始化
smart.initialize(pageContext);
// 限制上传的文件大小为 5MB
smart.setMaxFileSize(5 * 1024 * 1024);
// 准备上传
smart.upload();
String name = smart.getRequest().getParameter("fileName");
try
{
if(name == null || "".equals(name))
{
// 取得文件原始名称
name = smart.getFiles().getFile(0).getFileName();
// 保存文件(将文件取名为原文件名保存在站点根目录下)
count = smart.save("/");
}
else
{
// 累加扩展名
name += "." + smart.getFiles().getFile(0).getFileExt();
// 使用自定义文件名保存上传文件
smart.getFiles().getFile(0).saveAs("/" + name + "." + smart.getFiles().getFile(0).getFileExt());
}
// 显示上传文件个数
out.print("您成功上传" + count + "个文件");
out.print("<br>");
out.print("文件名为" + name);
}
catch(Exception e)
{
out.print(e.toString());
}
%>
</body>
</html>