欢迎来到天天文库
浏览记录
ID:6601480
大小:54.00 KB
页数:15页
时间:2018-01-19
《c#实现ftp方法(一)-ftpwebrequest》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、c#实现FTP方法(一)-FtpWebRequestclassFTP_Class{stringftpServerIP;stringftpUserID;stringftpPassword;FtpWebRequestreqFTP;publicvoidConnecttest(stringftpServerIP,stringftpUserID,stringftpPassword){//根据uri创建FtpWebRequest对象reqFTP=(FtpWebRequest)FtpWebRequest.Create(
2、newUri("ftp://"+ftpServerIP));//指定数据传输类型reqFTP.UseBinary=true;//ftp用户名和密码reqFTP.Credentials=newNetworkCredential(ftpUserID,ftpPassword);}#region连接//////连接//////privatevoidConnect(Stringpath)//连接ftp{//根据uri创建Ftp
3、WebRequest对象reqFTP=(FtpWebRequest)FtpWebRequest.Create(newUri(path));//指定数据传输类型reqFTP.UseBinary=true;//ftp用户名和密码reqFTP.Credentials=newNetworkCredential(ftpUserID,ftpPassword);}#endregion#regionftp登录信息//////ftp登录信息//////4、rverIP">ftpServerIP///ftpUserID///ftpPasswordpublicvoidFtpUpDown(stringftpServerIP,stringftpUserID,stringftpPassword){this.ftpServerIP=ftpServerIP;this.ftpUserID=ftpUserID;this.ftpPas5、sword=ftpPassword;}#endregion#region获取文件列表//////获取文件列表////////////privatestring[]GetFileList(stringpath,stringWRMethods)//上面的代码示例了如何从ftp服务器上获得文件列表{string[]downl6、oadFiles;StringBuilderresult=newStringBuilder();try{Connect(path);reqFTP.Method=WRMethods;WebResponseresponse=reqFTP.GetResponse();StreamReaderreader=newStreamReader(response.GetResponseStream(),System.Text.Encoding.UTF8);//中文文件名stringline=reader.ReadLine7、();while(line!=null){result.Append(line);result.Append("");line=reader.ReadLine();}//toremovethetrailing''result.Remove(result.ToString().LastIndexOf(''),1);reader.Close();response.Close();returnresult.ToString().Split('');}catch(Exceptionex){Syst8、em.Windows.Forms.MessageBox.Show(ex.Message);downloadFiles=null;returndownloadFiles;}}publicstring[]GetFileList(stringpath)//上面的代码示例了如何从ftp服务器上获得文件列表{returnGetFileList("ftp://"+ftpServerIP+"/"+path,WebRequestMethods
4、rverIP">ftpServerIP///ftpUserID///ftpPasswordpublicvoidFtpUpDown(stringftpServerIP,stringftpUserID,stringftpPassword){this.ftpServerIP=ftpServerIP;this.ftpUserID=ftpUserID;this.ftpPas
5、sword=ftpPassword;}#endregion#region获取文件列表//////获取文件列表////////////privatestring[]GetFileList(stringpath,stringWRMethods)//上面的代码示例了如何从ftp服务器上获得文件列表{string[]downl
6、oadFiles;StringBuilderresult=newStringBuilder();try{Connect(path);reqFTP.Method=WRMethods;WebResponseresponse=reqFTP.GetResponse();StreamReaderreader=newStreamReader(response.GetResponseStream(),System.Text.Encoding.UTF8);//中文文件名stringline=reader.ReadLine
7、();while(line!=null){result.Append(line);result.Append("");line=reader.ReadLine();}//toremovethetrailing''result.Remove(result.ToString().LastIndexOf(''),1);reader.Close();response.Close();returnresult.ToString().Split('');}catch(Exceptionex){Syst
8、em.Windows.Forms.MessageBox.Show(ex.Message);downloadFiles=null;returndownloadFiles;}}publicstring[]GetFileList(stringpath)//上面的代码示例了如何从ftp服务器上获得文件列表{returnGetFileList("ftp://"+ftpServerIP+"/"+path,WebRequestMethods
此文档下载收益归作者所有