upload.html
<!doctype html public "-//w3c//dtd html 4.01 transitional//en">
<html>
<head>
<title>文件上传</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
.style1 {font-size: 12px}
.style2 {color: #006699}
.style4 {font-size: 12px; color: #0066CC; }
-->
</style>
<script language="javascript">
function check(title,content,file,p){
if(title.value==null||title.value==""){
p.innerTHML="标题不能为空";
return false;
}
if(content.value==null||content.value==""){
p.innerTHML="内容不能为空";
return false;
}
if(file.value==null||file.value==""){
p.innerTHML="上传文件不能为空";
return false;
}
}
</script>
</head>
<body>
<p> </p>
<h4 align="center" class="style2">图片新闻上传</h4>
<form method="post" action="do_upload.jsp"
enctype="multipart/form-data">
<input type="hidden" name="test" value="good">
<table width="75%" border="1" align="center" cellpadding="3" cellspacing="0">
<tr>
<td width="150" align="center"><span class="style2">标题:</span></td>
<td><textarea name="title" cols="50" rows="3" id="title" ></textarea>
</td>
</tr>
<tr>
<td width="150" align="center" class="style2"><span class="style1">图片</span>:</td>
<td>
<input type="file" name="file1" size="30">
</td>
</tr>
<tr>
<td width="150" align="center" class="style2"><span class="style1">内容</span>:</td>
<td><textarea name="content" cols="60" rows="30" id="content"></textarea>
</td>
</tr>
<tr>
<td width="150"> </td><td>
<input type="submit" name="submit" value="提 交" onClick="return check(title,content,file1,message)">
</td>
</tr>
<p id="message" style="color:#FF0000 " ></p>
</table>
</form>
</body>
</html>
do_upload.jsp
<%@ page contentType="text/html; charset=gb2312" language="java"
import="com.jspsmart.upload.*"%>
<html>
<head>
<title>文件上传处理页面</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>
<%
// 新建一个smartupload对象
SmartUpload su = new SmartUpload();
// 上传初始化
su.initialize(pageContext);
// 设定上传限制
// 1.限制每个上传文件的最大长度。
// su.setmaxfilesize(10000);
// 2.限制总上传数据的长度。
// su.settotalmaxfilesize(20000);
// 3.设定允许上传的文件,仅允许doc,txt文件。
// su.setallowedfileslist("doc,txt");
// 4.设定禁止上传的文件,禁止上传带有exe,bat,
//jsp,htm,html扩展名的文件和没有扩展名的文件。
// su.setdeniedfileslist("exe,bat,jsp,htm,html,,");
// 上传文件
su.upload();
// 将上传文件全部保存到指定目录
int count = su.save("/upload");
out.println(count+"个文件上传成功!<br/>");
// 利用request对象获取参数之值
out.println("test="+su.getRequest().getParameter("test")
+"<br><br>");
// 逐一提取上传文件信息,同时可保存文件。
for (int i=0;i<su.getFiles().getCount();i++)
{
com.jspsmart.upload.File file = su.getFiles().getFile(i);
// 若文件不存在则继续
if (file.isMissing()) continue;
// 显示当前文件信息
out.println("<table border=1>");
out.println("<tr><td>表单项名</td><td>"
+ file.getFieldName() + "</td></tr>");
out.println("<tr><td>文件长度</td><td>" +
file.getSize() + "</td></tr>");
out.println("<tr><td>文件名</td><td>"
+ file.getFileName() + "</td></tr>");
out.println("<tr><td>文件扩展名</td><td>"
+ file.getFileExt() + "</td></tr>");
out.println("<tr><td>文件全名</td><td>"
+ file.getFilePathName() + "</td></tr>");
out.println("</table><br>");
// 将文件另存
//file.saveas("/upload/"+i);
file.saveAs("/upload/"+file.getFieldName());
// 另存到以web应用程序的根目录为文件根目录的目录下
// file.saveas("/upload/" + myfile.getfilename(),
out.print(request.getContextPath());
// 另存到操作系统的根目录为文件根目录的目录下
// file.saveas("c:\\temp\\" + myfile.getfilename(),
//su.save_physical();
}
%>
</body>
</html>