(一)、Sun FtpClient

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

Java代码
  1. publicclassTestFtpClient{
  2. /**
  3. *@paramargs
  4. */
  5. publicstaticvoidmain(String[]args){
  6. FtpClientftpClient;
  7. //server:FTP服务器的IP地址
  8. Stringserver="127.0.0.1";
  9. //user:登录FTP服务器的用户名
  10. Stringuser="username";
  11. //password:登录FTP服务器的用户名的口令
  12. Stringpassword="password";
  13. //path:FTP服务器上的路径
  14. Stringpath="/path/";
  15. //要上传本地文件路径
  16. Stringfilename="D:"+File.separator+"test.txt";
  17. //上传服务器上文件名
  18. StringftpFile="test.txt";
  19. try{
  20. ftpClient=newFtpClient(server);
  21. //ftpClient.openServer(server,21);
  22. ftpClient.login(user,password);
  23. System.out.println("Login.......");
  24. //path是ftp服务下主目录的子目录
  25. if(path.length()!=0)
  26. ftpClient.cd(path);
  27. //用2进制上传
  28. ftpClient.binary();
  29. TelnetOutputStreamos=null;
  30. FileInputStreamis=null;
  31. os=ftpClient.put(ftpFile);
  32. Filefile_in=newFile(filename);
  33. if(file_in.length()==0){
  34. thrownewException("上传文件为空!");
  35. }
  36. is=newFileInputStream(file_in);
  37. byte[]bytes=newbyte[1024];
  38. intc;
  39. while((c=is.read(bytes))!=-1){
  40. os.write(bytes,0,c);
  41. }
  42. System.out.println("上传文件成功!");
  43. is.close();
  44. os.close();
  45. }catch(FileNotFoundExceptione){
  46. e.printStackTrace();
  47. }catch(IOExceptione){
  48. e.printStackTrace();
  49. }catch(Exceptione){
  50. e.printStackTrace();
  51. }
  52. }
  53. }

你可能感兴趣的:(FTPClient)