c\#프 록 시 IP 가 유용 한 지 빠르게 검증

    public void yanzhen(string str, int port)  
           {  
               WebProxy proxyObject = new WebProxy(str, port);//str IP   port      
               HttpWebRequest Req = (HttpWebRequest)WebRequest.Create("http://www.whatismyip.com.tw/");  
               Req.Proxy = proxyObject; //       
               HttpWebResponse Resp = (HttpWebResponse)Req.GetResponse();  
               string str = "";  
               string OkStr = "";  
               Encoding code = Encoding.GetEncoding("UTF-8");  
               using (StreamReader sr = new StreamReader(Resp.GetResponseStream(), code))  
               {  
                   if (sr != null)  
                   {  
                       try  
                       {  
                           str = sr.ReadToEnd();  
                           StringSub.substr(str, "<h2>", "</h2>", 0);  
                           str = str.Substring(str.IndexOf(start) + start.Length);  
                           OkStr = str.Substring(0, str.IndexOf(last));  
                           MessageBox.Show("    !  IP " + OkStr);  
                       }  
                       catch  
                       {  
                           MessageBox.Show("      !");  
                       }  
                       finally  
                       {  
                           sr.Close();  
                       }  
                   }  
               }  
           }  

코드 가 잘못 되 었 습 니 다.시간 이 있 을 때 다시 고 쳐 주세요.

좋은 웹페이지 즐겨찾기