繁体   English   中英

从catch System.Net.Sockets.SocketException返回字符串

[英]Return string from catch System.Net.Sockets.SocketException

我有一个按钮,应该将主机名列表转换为文本框中的匹配IP地址。 我如何才能为文本框真正不知道的主机名返回字符串“未知主机”?

我使用try-catch块来捕获System.Net.Sockets.SocketException 但是据我所知,catch块不能返回任何字符串值。 因此,我通常通过输出消息框来捕获异常。 但是这次,我只希望它在指定的文本框中显示一个字符串。 这是我尝试过的代码:

private void btnConvertHosttoIP_Click(object sender, Eventrgs e)
{
    try
    {
        string ips = null;
        List<string> ipList = new List<string>();
        string[] hostList = Regex.Split(txtHost.Text, "\r\n");
        foreach (var h in hostList)
        {
            // Check DNS
            if (h.Contains(".xxxx.com"))
            {
                hostName = h;
            }
            else
            {
                string code = txtHost.Text.Substring(0, 3);
                if (code == "ABC" || code == "CDE")
                    hostName = h + ".ap.xxx.com";
                else
                    hostName = "Unknown domain name";
            }

            IPHostEntry host = Dns.GetHostEntry(hostName);
            IPAddress[] ipaddr = host.AddressList;

            // Loop through the IP Address array and add the IP address to Listbox
            foreach (IPAddress addr in ipaddr)
            {
                if (addr.AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork)
                {
                    ipList.Add(addr.ToString());
                }
            }
        }
        foreach (var ip in ipList)
        {
            ips += ip + Environment.NewLine;
        }
        txtIP.Text = ips;
    }
    catch (System.Net.Sockets.SocketException ex)
    {
        MessageBox.Show(ex.Message);
    }
}

我希望未知主机仅作为例外显示在文本框中。 有可能或其他建议吗?

您可以按以下方式修改代码。

try
{
    string ips = null;
    List<string> ipList = new List<string>();
    string[] hostList = Regex.Split(txtHost.Text, "\r\n");
    foreach (var h in hostList)
    {
        // Check DNS
        if (h.Contains(".xxxx.com"))
        {
            hostName = h;
        }
        else
        {
            string code = txtHost.Text.Substring(0, 3);
            if (code == "ABC" || code == "CDE")
                hostName = h + ".ap.xxx.com";
            else
                hostName = "Unknown domain name";
        }
        try
       {
        IPHostEntry host = Dns.GetHostEntry(hostName);
        IPAddress[] ipaddr = host.AddressList;

        // Loop through the IP Address array and add the IP address to Listbox
        foreach (IPAddress addr in ipaddr)
        {
            if (addr.AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork)
            {
                ipList.Add(addr.ToString());
            }
        }
      } 
      catch (System.Net.Sockets.SocketException ex)
     {
         ipList.Add("Invalid Host");
     }
    }
    foreach (var ip in ipList)
    {
        ips += ip + Environment.NewLine;
    }
    txtIP.Text = ips;
}
catch (Exception ex)
{
    MessageBox.Show(ex.Message);
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM