在jsp中使用smartupload元件上傳檔案 (轉)

amyz發表於2007-08-15
在jsp中使用smartupload元件上傳檔案 (轉)[@more@]

在中使用smart

  jsp對上傳檔案的支援不象中支援的那麼好,直接做成了,也不象中要透過元件才能實現。jsp中可以透過bean來實現。但是我們沒有必要自己去寫一個上載的bean,在網上已經有了很多成型的技術,smartupload就是其中的一個。但是smartupload是將檔案先讀到的中,所以上傳太大的檔案(超過100兆)有可能會出問題,也算是一個美中不足吧:)

  先說一下提交的頁面,smartupload元件要求用位元組流的方式來提交。下面就是個例子upload.htm:


<!-- saved from url=(0057) --&gt








 
 
 
 
 
 
   
 
 
 
  File 
  : 
  
  File 
  : 
  
  File 
  : 
  
align=right>

  再來看一下接收的頁面 ,我們把檔案上傳到伺服器以後就直接把它再存入中:upload.jsp





 例化上載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  得上載的檔案
  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=getContext().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 Obj=new DBstep.iDBManager2000();
  DbaObj.OpenConnection();
  檔案寫到資料庫中
  mSql="insert into marklist (markname,pass,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。從伺服器上下載

  先說從資料庫直接下載的情形:就是把輸入流從資料庫裡讀出來,然後轉存為檔案





  int bytesum=0;
  int byteread=0;
  開資料庫
  ResultSet result=null;
  String Sql=null;
  PreparedStatement prestmt=null;
  DBstep.iDBManager2000 DbaObj=new DBstep.iDBManager2000();
  DbaObj.OpenConnection();
 得資料庫中的資料
 Sql="  *  from  t_local_zhongzhuan ";
 result=DbaObj.ExecuteQuery(Sql);
 result.next();

 資料庫中的資料讀到流中
InputStream inStream=result.getBinaryStream("content");
FileOutputStream fs=new FileOutputStream( "c:/dffdsafd.doc");

  byte[]  buffer =new  byte[1444];
int length;
  while ((byteread=inStream.read(buffer))!=-1)
  {
  out.println("

"+byteread+"
");
  bytesum+=byteread;
  System.out.println(bytesum);
 
 
  fs.write(buffer,0,byteread);
  }
%>

再說從伺服器上下載的情形:



  String fileName = "zsc104.swf".toString();
到流中
InputStream inStream=new FileInputStream("c:/zsc104.swf");
 置輸出的格式
  response.reset();
  response.setContentType("bin");
  response.addHeader("Content-Disposition","attachment; filename="" + fileName + """);
 環取出流中的資料
  byte[] b = new byte[100];
  int len;
  while((len=inStream.read(b)) >0)
  response.getOutputStream().write(b,0,len);  
  inStream.close();
%>

  好了,到這裡只要不是太大的檔案的上傳下載的操作都可以完成了。

 


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752019/viewspace-959034/,如需轉載,請註明出處,否則將追究法律責任。

相關文章