Blue Dream

记录成长的每一个脚印,写下漫长的程序人生
随笔 - 4, 文章 - 121, 评论 - 1, 阅读 - 89514
  首页  :: 订阅 订阅  :: 管理
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
Pop3接收数据,参见
http://www.aspalliance.com/chrisg/default.asp?article=93

改成c#代码,并修改了一些bug

1.用的是ASCII,并不适合国内的邮件读取
解决方法:改为Encoding.GetEncoding(936)
2.GetResponse并不是堵塞方式,没有完全下载数据
解决方法:设置一个strEnd标志,来判断是否结束
3.GetResponse每次都要返回ReceiveBufferSize长的数据
解决方法:根据接收到数据长度,返回缓冲中的对应长度的数据
等等..

System.Net.Sockets.TcpClient tcpC;
System.Net.Sockets.NetworkStream netStream;
string SendCommand(string sToSend){
 byte[] bData=Encoding.GetEncoding(936).GetBytes(sToSend+Environment.NewLine);
 netStream.Write(bData,0,bData.Length);
 return GetResponse();
}

string GetResponse(){
  byte[] bData=new byte[tcpC.ReceiveBufferSize];
  int iRec=netStream.Read(bData, 0, bData.Length);
  return Encoding.GetEncoding(936).GetString(bData,0,iRec);
}
string ReadMail(string ps,string un,string pw){
 tcpC=new System.Net.Sockets.TcpClient(ps,110);
 netStream = tcpC.GetStream();
 string strResponse=GetResponse();
 string strNL=Environment.NewLine;
 string strEnd=strNL+"."+strNL+"+OK "+strNL;
 SendCommand("user "+un);
 SendCommand("pass "+pw);
 strResponse=SendCommand("stat");
 int iCount=Int32.Parse(strResponse.Split(' ')[1]);
 Response.Write(iCount + " Messages");
 for(int i=1;i<iCount;i++)strResponse+=SendCommand("top "+i+" 0");
 strResponse+=SendCommand("QUIT");
 while(!strResponse.EndsWith(strEnd))strResponse+=GetResponse();
 tcpC.Close();
 return strResponse;
}

调用方法:
 ReadMail(pop3Server,username,password)

ps.简化了代码,取消了一些异常的捕捉,是为了让大家看得清楚明白.
(评论功能已被禁用)
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 25岁的心里话
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
点击右上角即可分享
微信分享提示