当前位置导航:炫浪网>>网络学院>>编程开发>>Visual C#教程

C#的PoP3连接

 
  1. using System;   
  2. using System.Collections.Generic;   
  3. using System.Linq;   
  4. using System.Text;   
  5.   
  6. using System.Net.Sockets;    
  7. using System.IO;    
  8. using System.Net;    
  9.   
  10. namespace ConsoleApplication1   
  11. {   
  12.     class Program   
  13.     {   
  14.         static void Main(string[] args)   
  15.         {   
  16.             POP pop3 = new POP("E-Mail.Server""UserName""PassWord");   
  17.             Console.WriteLine("New Messages = {0}", pop3.GetNumberOfNewMessages());   
  18.             Console.ReadLine();    
  19.         }   
  20.     }   
  21.   
  22.     class POP   
  23.     {   
  24.         string POPServer;   
  25.         string user;   
  26.         string pwd;   
  27.         public POP() { }   
  28.         public POP(string _popserver, string _user, string _pwd)   
  29.         {   
  30.             POPServer = _popserver;   
  31.             user = _user;   
  32.             pwd = _pwd;   
  33.         }   
  34.         private NetworkStream Connect()   
  35.         {   
  36.             TcpClient sender = new TcpClient(POPServer, 110);   
  37.             Byte[] outbytes;   
  38.             string input;   
  39.             NetworkStream ns = null;   
  40.             try  
  41.             {   
  42.                 ns = sender.GetStream();   
  43.                 StreamReader sr = new StreamReader(ns);   
  44.                 Console.WriteLine("1:" + sr.ReadLine());   
  45.   
  46.                 input = "user " + user + "\r\n";   
  47.                 outbytes = System.Text.Encoding.ASCII.GetBytes(input.ToCharArray());   
  48.                 ns.Write(outbytes, 0, outbytes.Length);   
  49.                 Console.WriteLine("2:" + sr.ReadLine());   
  50.   
  51.                 input = "pass " + pwd + "\r\n";   
  52.                 outbytes = System.Text.Encoding.ASCII.GetBytes(input.ToCharArray());   
  53.                 ns.Write(outbytes, 0, outbytes.Length);   
  54.                 Console.WriteLine("3:" + sr.ReadLine());   
  55.   
  56.                 return ns;   
  57.             }   
  58.             catch (InvalidOperationException ioe)   
  59.             {   
  60.                 Console.WriteLine("Could not connect to mail server");   
  61.                 return ns;   
  62.             }   
  63.         }   
  64.         public int GetNumberOfNewMessages()   
  65.         {   
  66.             Byte[] outbytes;   
  67.             string input;   
  68.             try  
  69.             {   
  70.                 NetworkStream ns = Connect();   
  71.                 StreamReader sr = new StreamReader(ns);   
  72.   
  73.                 input = "stat" + "\r\n";   
  74.                 outbytes = System.Text.Encoding.ASCII.GetBytes(input.ToCharArray());   
  75.                 ns.Write(outbytes, 0, outbytes.Length);   
  76.                 string resp = sr.ReadLine();   
  77.                 Console.WriteLine("4:" + resp);   
  78.                 string[] tokens = resp.Split(new Char[] { ' ' });   
  79.   
  80.                 input = "quit" + "\r\n";   
  81.                 outbytes = System.Text.Encoding.ASCII.GetBytes(input.ToCharArray());   
  82.                 ns.Write(outbytes, 0, outbytes.Length);   
  83.                 Console.WriteLine("5:" + sr.ReadLine());   
  84.   
  85.                 sr.Close();   
  86.                 ns.Close();   
  87.                 //return tokens[1].ToInt32();   
  88.                 return Convert.ToInt32(tokens[1]);   
  89.             }   
  90.             catch (InvalidOperationException ioe)   
  91.             {   
  92.                 Console.WriteLine("Could not connect to mail server");   
  93.                 return 0;   
  94.             }   
  95.         }   
  96.     }   
  97.   
  98. }  
相关内容
赞助商链接