加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

[VB.NET]如何获取主机名

发布时间:2020-12-16 23:59:08 所属栏目:大数据 来源:网络整理
导读:Dim hostInfo As System.Net.IPHostEntry=System.Net.Dns.GetHostByName(TextBox1.Text) MessageBox.Show(hostInfo.AddressList(0).ToString, "主机地址" ,MessageBoxButtons.OK,MessageBoxIcon.Exclamation) '从域名到IP地址的转换 Dim myIP As System.Net.
  1. DimhostInfoAsSystem.Net.IPHostEntry=System.Net.Dns.GetHostByName(TextBox1.Text)
  2. MessageBox.Show(hostInfo.AddressList(0).ToString,"主机地址",MessageBoxButtons.OK,MessageBoxIcon.Exclamation)
  3. '从域名到IP地址的转换
  4. DimmyIPAsSystem.Net.IPAddress=System.Net.IPAddress.Parse(TextBox2.Text)
  5. DimhostInfoAsSystem.Net.IPHostEntry=System.Net.Dns.GetHostByAddress(myIP)
  6. MessageBox.Show(hostInfo.HostName.ToString,"主机域名",MessageBoxIcon.Exclamation)
  7. '从IP地址到域名的转换()

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读