我有一个按钮,应该将主机名列表转换为文本框中的匹配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);
}
}
我希望未知主机仅作为例外显示在文本框中。有可能还是其他建议?
答案 0 :(得分:2)
您可以按以下方式修改代码。
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);
}