java 上传下载

  1. package com.billows.util;   
  2.   
  3. import java.io.DataInputStream;   
  4. import java.io.FileInputStream;   
  5. import java.io.FileOutputStream;   
  6. import java.io.IOException;   
  7. import java.util.ArrayList;   
  8. import java.util.List;   
  9.   
  10. import sun.net.TelnetInputStream;   
  11. import sun.net.TelnetOutputStream;   
  12. import sun.net.ftp.FtpClient;   
  13.   
  14. /**  
  15.  * ftp工具类  
  16.  *   
  17.  * @author Billows.Van  
  18.  * @since Create on 2010-01-05 14:49:08  
  19.  * @version 1.0  
  20.  */  
  21. public class FtpUtil {   
  22.     private FtpClient ftpClient;   
  23.   
  24.     /**  
  25.      * connectServer 连接ftp服务器  
  26.      * @throws java.io.IOException  
  27.      * @param path 文件夹,空代表根目录  
  28.      * @param password 密码  
  29.      * @param user 登陆用户  
  30.      * @param server 服务器地址  
  31.      */  
  32.     public void connectServer(String server, String user, String password,   
  33.             String path) throws IOException {   
  34.         // server:FTP服务器的IP地址;user:登录FTP服务器的用户名   
  35.         // password:登录FTP服务器的用户名的口令;path:FTP服务器上的路径   
  36.         ftpClient = new FtpClient();   
  37.         ftpClient.openServer(server);   
  38.         ftpClient.login(user, password);   
  39.         // path是ftp服务下主目录的子目录   
  40.         if (path.length() != 0)   
  41.             ftpClient.cd(path);   
  42.         // 用2进制上传、下载   
  43.         ftpClient.binary();   
  44.     }   
  45.   
  46.     /**  
  47.      * upload 上传文件  
  48.      * @throws java.lang.Exception  
  49.      * @return -1 文件不存在 -2 文件内容为空 >0 成功上传,返回文件的大小  
  50.      * @param newname 上传后的新文件名  
  51.      * @param filename 上传的文件  
  52.      */  
  53.     public long upload(String filename, String newname) throws Exception {   
  54.         long result = 0;   
  55.         TelnetOutputStream os = null;   
  56.         FileInputStream is = null;   
  57.         try {   
  58.             java.io.File file_in = new java.io.File(filename);   
  59.             if (!file_in.exists())   
  60.                 return -1;   
  61.             if (file_in.length() == 0)   
  62.                 return -2;   
  63.             os = ftpClient.put(newname);   
  64.             result = file_in.length();   
  65.             is = new FileInputStream(file_in);   
  66.             byte[] bytes = new byte[1024];   
  67.             int c;   
  68.             while ((c = is.read(bytes)) != -1) {   
  69.                 os.write(bytes, 0, c);   
  70.             }   
  71.         } finally {   
  72.             if (is != null) {   
  73.                 is.close();   
  74.             }   
  75.             if (os != null) {   
  76.                 os.close();   
  77.             }   
  78.         }   
  79.         return result;   
  80.     }   
  81.   
  82.     /**  
  83.      * upload  
  84.      *   
  85.      * @throws java.lang.Exception  
  86.      * @return  
  87.      * @param filename  
  88.      */  
  89.     public long upload(String filename) throws Exception {   
  90.         String newname = "";   
  91.         if (filename.indexOf("/") > -1) {   
  92.             newname = filename.substring(filename.lastIndexOf("/") + 1);   
  93.         } else {   
  94.             newname = filename;   
  95.         }   
  96.         return upload(filename, newname);   
  97.     }   
  98.   
  99.     /**  
  100.      * download 从ftp下载文件到本地  
  101.      *   
  102.      * @throws java.lang.Exception  
  103.      * @return  
  104.      * @param newfilename  
  105.      *            本地生成的文件名  
  106.      * @param filename  
  107.      *            服务器上的文件名  
  108.      */  
  109.     public long download(String filename, String newfilename) throws Exception {   
  110.         long result = 0;   
  111.         TelnetInputStream is = null;   
  112.         FileOutputStream os = null;   
  113.         try {   
  114.             is = ftpClient.get(filename);   
  115.             java.io.File outfile = new java.io.File(newfilename);   
  116.             os = new FileOutputStream(outfile);   
  117.             byte[] bytes = new byte[1024];   
  118.             int c;   
  119.             while ((c = is.read(bytes)) != -1) {   
  120.                 os.write(bytes, 0, c);   
  121.                 result = result + c;   
  122.             }   
  123.         } catch (IOException e) {   
  124.             e.printStackTrace();   
  125.         } finally {   
  126.             if (is != null) {   
  127.                 is.close();   
  128.             }   
  129.             if (os != null) {   
  130.                 os.close();   
  131.             }   
  132.         }   
  133.         return result;   
  134.     }   
  135.   
  136.     /**  
  137.      * 取得某个目录下的所有文件列表  
  138.      *   
  139.      */  
  140.     public List getFileList(String path) {   
  141.         List list = new ArrayList();   
  142.         try {   
  143.             DataInputStream dis = new DataInputStream(ftpClient.nameList(path));   
  144.             String filename = "";   
  145.             while ((filename = dis.readLine()) != null) {   
  146.                 list.add(filename);   
  147.             }   
  148.   
  149.         } catch (Exception e) {   
  150.             e.printStackTrace();   
  151.         }   
  152.         return list;   
  153.     }   
  154.   
  155.     /**  
  156.      * closeServer 断开与ftp服务器的链接  
  157.      *   
  158.      * @throws java.io.IOException  
  159.      */  
  160.     public void closeServer() throws IOException {   
  161.         try {   
  162.             if (ftpClient != null) {   
  163.                 ftpClient.closeServer();   
  164.             }   
  165.         } catch (IOException e) {   
  166.             e.printStackTrace();   
  167.         }   
  168.     }   
  169.   
  170.     public static void main(String[] args) throws Exception {   
  171.         FtpUtil ftp = new FtpUtil();   
  172.         try {   
  173.             // 连接ftp服务器   
  174.             ftp.connectServer("127.0.0.1""test""test""");   
  175.             /** 上传文件到 根目录 文件夹下 */  
  176.             System.out.println("filesize:" + ftp.upload("E:/favicon.ico") + "字节");   
  177.             /** 取得根目录文件夹下的所有文件列表,并下载到 E盘下 */  
  178.             List list = ftp.getFileList(".");   
  179.             for (int i = 0; i < list.size(); i++) {   
  180.                 String filename = (String) list.get(i);   
  181.                 System.out.println(filename);   
  182.                 ftp.download(filename, "E:/" + filename);   
  183.             }   
  184.         } catch (Exception e) {   
  185.             e.printStackTrace();   
  186.         } finally {   
  187.             ftp.closeServer();   
  188.         }   
  189.     }   
  190. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值