(一)、Sun FtpClient

项目实践中遇到Ftp传输问题,在这里做个专辑。
第一篇还是介绍一下sun提供的FtpClient.这个也是网上说的最多的,在这里我只是给出例程,不再做详细的解释。sun提供的FtpClient简单宜用,不支持任何加密方式;并没有提供相应的api,所以给我们调试带来不便,与其说是sun足够自信说这个组件简单到不用api就可以完全满足应用,还不如说不负责任。其实在开发中会遇到各种问题,实践中就遇到上传文件到一定数量级后传输会变慢(很慢),但程序并不报错;用ftp客户端桌面软件测试发现连续传输1000个左右文件报错率为4,可能FtpClient在开发时候对异常捕捉不全面。但如果在小数据量和没有用加密方式认证和传输的情况下,FtpClient仍不失是一个很好的选择。
下面是例程:

 

Java代码
  1. public class TestFtpClient {   
  2.   
  3.     /**  
  4.      * @param args  
  5.      */  
  6.     public static void main(String[] args) {   
  7.         FtpClient ftpClient;   
  8.         // server:FTP服务器的IP地址   
  9.         String server = "127.0.0.1";   
  10.         // user:登录FTP服务器的用户名   
  11.         String user = "username";   
  12.         // password:登录FTP服务器的用户名的口令   
  13.         String password = "password";   
  14.         // path:FTP服务器上的路径   
  15.         String path = "/path/";   
  16.         // 要上传本地文件路径   
  17.         String filename = "D:" + File.separator + "test.txt";   
  18.         // 上传服务器上文件名   
  19.         String ftpFile = "test.txt";   
  20.   
  21.         try {   
  22.                
  23.             ftpClient = new FtpClient(server);   
  24.             //ftpClient.openServer(server,21);   
  25.             ftpClient.login(user, password);   
  26.             System.out.println("Login .......");   
  27.                
  28.             // path是ftp服务下主目录的子目录   
  29.             if (path.length() != 0)   
  30.                 ftpClient.cd(path);   
  31.             // 用2进制上传   
  32.             ftpClient.binary();   
  33.   
  34.             TelnetOutputStream os = null;   
  35.             FileInputStream is = null;   
  36.   
  37.             os = ftpClient.put(ftpFile);   
  38.             File file_in = new File(filename);   
  39.             if (file_in.length() == 0) {   
  40.                 throw new Exception("上传文件为空!");   
  41.             }   
  42.             is = new FileInputStream(file_in);   
  43.             byte[] bytes = new byte[1024];   
  44.             int c;   
  45.             while ((c = is.read(bytes)) != -1) {   
  46.                 os.write(bytes, 0, c);   
  47.             }   
  48.   
  49.             System.out.println("上传文件成功!");   
  50.             is.close();   
  51.             os.close();   
  52.         } catch (FileNotFoundException e) {   
  53.             e.printStackTrace();   
  54.         } catch (IOException e) {   
  55.             e.printStackTrace();   
  56.         } catch (Exception e) {   
  57.             e.printStackTrace();   
  58.         }    
  59.   
  60.     }   
  61. }  

 

你可能感兴趣的:(exception,String,server,FTP服务器,File,sun)