Web上传文件在线压缩的实现

关键字: 压缩 zip rar

在我们开发网站的过程中,如果用户上传的文件过大,由于考虑到服务器带宽问题,我们经常会在用户体验的界面中让他下载压缩后的文件,那么如何将用户传上去的文件实现在线压缩呢?不仅如何,你还可以通过SMB协议实现远程文件在线压缩(因为在大型网站中,Web集群服务器与文件服务器一般都是分开的),以下代码可以帮您实现:

Java代码 复制代码
  1. //打包网络上的zip文件   
  2. public void zip(String zipFileName,String filepath,String username,String pwd)throws Exception{    
  3.     SmbFile f=new SmbFile("smb://"+username+":"+pwd+"@"+filepath);   
  4.     zip(zipFileName,username,pwd,f);    
  5. }    
  6. //打包网络文件上的多个文件或者文件夹   
  7. public void zip(String zipFileName,String[] filepaths,String username,String pwd)throws Exception   
  8. {   
  9.     String str="smb://"+username+":"+pwd+"@"+zipFileName;   
  10.     ZipOutputStream out=new ZipOutputStream(new SmbFileOutputStream(str));    
  11.     for(int i=0;i<filepaths.length;i++)   
  12.     {   
  13.         SmbFile inputFile=new SmbFile("smb://"+username+":"+pwd+"@"+filepaths[i]);   
  14.         zip(out,inputFile,"");   
  15.     }   
  16.     System.out.println("zip done");    
  17.     out.close();           
  18. }   
  19. public void zip(String zipFileName,String username,String pwd,SmbFile inputFile)throws Exception{    
  20.     String str="smb://"+username+":"+pwd+"@"+zipFileName;   
  21.     ZipOutputStream out=new ZipOutputStream(new SmbFileOutputStream(str));    
  22.     zip(out,inputFile,"");    
  23.     System.out.println("zip done");    
  24.     out.close();    
  25. }   

你可能感兴趣的:(Web,网络协议,F#)