程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 在jsp中使用smartupload組件上傳文件

在jsp中使用smartupload組件上傳文件

編輯:關於JSP

jsp對上傳文件的支持不象php中支持的那麼好,直接做成了函數,也不象asp中要通過組件才能實現。jsp 中可以通過javabean來實現。但是我們沒有必要自己去寫一個上載的bean,在網上已經有了很多成型的技術, smartupload就是其中的一個。

但是smartupload是將文件先讀到服務器的內存中,所以上傳太大的文件(超過100兆)有可能會出問題, 也算是一個美中不足吧:)

先說一下提交的頁面,smartupload組件要求用字節流的方式來提交<FORM action="upload.jsp" encType=multipart/form-data method=post>。下面就是個例子upload.htm:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0057)http://localhost:8080/jspsmartfile/jsp/uploadTemplate.jsp -->
<HTML><HEAD>
<META content="text/html; charset=gb2312" http-equiv=Content- Type>
<META content="MSHTML 5.00.2920.0" name=GENERATOR></HEAD>
<BODY bgColor=#e6e6e6><BR>
<FORM action="upload.jsp" encType=multipart/form-data method=post>
<TABLE>
<TBODY>
<TR>
<TD><FONT color=#000000 face=helv,helvetica size=1>&nbsp;&nbsp;File
:&nbsp;</FONT>&nbsp;&nbsp;<INPUT size=60 type=file name="file"></TD></TR>
<TR>
<TR>
<TD><FONT color=#000000 face=helv,helvetica size=1>&nbsp;&nbsp;File
:&nbsp;</FONT>&nbsp;&nbsp;<INPUT size=60 type=file name="file1"></TD></TR>
<TR>
<TD><FONT color=#000000 face=helv,helvetica size=1>&nbsp;&nbsp;File
:&nbsp;</FONT>&nbsp;&nbsp;<INPUT size=60 type=text name="text"></TD></TR>
<TR>
<TD
align=right><INPUT type=submit value=Send name="send"></TD></TR></TBODY></TABLE></FORM></BODY></ HTML>

再來看一下接收的頁面 ,我們把文件上傳到服務器以後就直接把它再存入數據庫中:upload.jsp

<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.sql.*"%>
<%@ page import="com.jspsmart.upload.*" %>
<%@ page import="DBstep.iDBManager2000.*"%>
<%
//實例化上載bean
com.jspsmart.upload.SmartUpload mySmartUpload=new com.jspsmart.upload.SmartUpload();
//初 始化
mySmartUpload.initialize(pageContext);
//設置上載的最大值
mySmartUpload.setMaxFileSize(500 * 1024*1024);
//上載文件
mySmartUpload.upload ();
//循環取得所有上載的文件
for (int i=0;i<mySmartUpload.getFiles().getCount ();i++){
//取得上載的文件
com.jspsmart.upload.File myFile = mySmartUpload.getFiles ().getFile(i);
if (!myFile.isMissing())
{
//取得上載的文件的文件名
String myFileName=myFile.getFileName();
//取得不帶後綴的文件名
String suffix=myFileName.substring(0,myFileName.lastIndexOf('.'));
//取得後綴名
String ext= mySmartUpload.getFiles().getFile(0).getFileExt();
//取得文件的大小
int fileSize=myFile.getSize();
//保存路徑
String aa=getServletContext().getRealPath ("/")+"jsp";
String trace=aa+myFileName;
//取得別的參數
String explain= (String)mySmartUpload.getRequest().getParameter("text");
String send=(String) mySmartUpload.getRequest().getParameter("send");
//將文件保存在服務器端
myFile.saveAs(trace,mySmartUpload.SAVE_PHYSICAL);
//下面的是將上載的文件保存到數據庫中
  //將文件讀到流中
java.io.File file = new java.io.File(trace);
java.io.FileInputStream fis = new java.io.FileInputStream(file);
out.println(file.length ());
//打開數據庫
ResultSet result=null;
String mSql=null;
PreparedStatement prestmt=null;
DBstep.iDBManager2000 DbaObj=new DBstep.iDBManager2000 ();
DbaObj.OpenConnection();
//將文件寫到數據庫中
mSql="insert into marklist (markname,password,marksize,markdate,MarkBody) values (?,?,?,?,?)";
prestmt =DbaObj.Conn.prepareStatement(mSql);
prestmt.setString(1, "aaa1");
prestmt.setString(2, "0000");
prestmt.setInt(3, fileSize);
prestmt.setString(4, DbaObj.GetDateTime());
prestmt.setBinaryStream(5,fis,(int)file.length());
DbaObj.Conn.setAutoCommit(true) ;
prestmt.executeUpdate();
DbaObj.Conn.commit();
  out.println(("上載成功!!!").toString());
}
else
{ out.println(("上載失敗 !!!").toString()); }
}//與前面的if對應
%>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved