简单DNS解析器

Imports System.Net



Public Class form1
Inherits System.Windows.Forms.Form

#Region " Windows 窗体设计器生成的代码 "

Public Sub New()
MyBase.New()

'该调用是 Windows 窗体设计器所必需的。
InitializeComponent()

'在 InitializeComponent() 调用之后添加任何初始化

End Sub

'窗体重写 dispose 以清理组件列表。
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub

'Windows 窗体设计器所必需的
Private components As System.ComponentModel.IContainer

'注意: 以下过程是 Windows 窗体设计器所必需的
'可以使用 Windows 窗体设计器修改此过程。
'不要使用代码编辑器修改它。
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents TextBox2 As System.Windows.Forms.TextBox
Friend WithEvents Label3 As System.Windows.Forms.Label
Friend WithEvents TextBox3 As System.Windows.Forms.TextBox
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents Button2 As System.Windows.Forms.Button
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.Label1 = New System.Windows.Forms.Label
Me.TextBox1 = New System.Windows.Forms.TextBox
Me.Label2 = New System.Windows.Forms.Label
Me.TextBox2 = New System.Windows.Forms.TextBox
Me.Label3 = New System.Windows.Forms.Label
Me.TextBox3 = New System.Windows.Forms.TextBox
Me.Button1 = New System.Windows.Forms.Button
Me.Button2 = New System.Windows.Forms.Button
Me.SuspendLayout()
'
'Label1
'
Me.Label1.Location = New System.Drawing.Point(8, 16)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(48, 24)
Me.Label1.TabIndex = 0
Me.Label1.Text = "主机:"
'
'TextBox1
'
Me.TextBox1.Location = New System.Drawing.Point(72, 16)
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(152, 21)
Me.TextBox1.TabIndex = 1
Me.TextBox1.Text = ""
'
'Label2
'
Me.Label2.Location = New System.Drawing.Point(8, 64)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(48, 24)
Me.Label2.TabIndex = 2
Me.Label2.Text = "别名:"
'
'TextBox2
'
Me.TextBox2.Location = New System.Drawing.Point(72, 64)
Me.TextBox2.Multiline = True
Me.TextBox2.Name = "TextBox2"
Me.TextBox2.Size = New System.Drawing.Size(152, 72)
Me.TextBox2.TabIndex = 3
Me.TextBox2.Text = ""
'
'Label3
'
Me.Label3.Location = New System.Drawing.Point(8, 176)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(56, 16)
Me.Label3.TabIndex = 4
Me.Label3.Text = "IP地址:"
'
'TextBox3
'
Me.TextBox3.Location = New System.Drawing.Point(72, 176)
Me.TextBox3.Multiline = True
Me.TextBox3.Name = "TextBox3"
Me.TextBox3.Size = New System.Drawing.Size(160, 72)
Me.TextBox3.TabIndex = 5
Me.TextBox3.Text = ""
'
'Button1
'
Me.Button1.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.Button1.Location = New System.Drawing.Point(8, 272)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(96, 48)
Me.Button1.TabIndex = 6
Me.Button1.Text = "主机-->>IP"
'
'Button2
'
Me.Button2.Location = New System.Drawing.Point(136, 272)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(96, 48)
Me.Button2.TabIndex = 7
Me.Button2.Text = "IP-->>主机"
'
'form1
'
Me.AutoScaleBaseSize = New System.Drawing.Size(6, 14)
Me.ClientSize = New System.Drawing.Size(328, 357)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.TextBox3)
Me.Controls.Add(Me.Label3)
Me.Controls.Add(Me.TextBox2)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.TextBox1)
Me.Controls.Add(Me.Label1)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D
Me.ImeMode = System.Windows.Forms.ImeMode.NoControl
Me.Name = "form1"
Me.Text = "简单DNS解析器"
Me.TransparencyKey = System.Drawing.Color.Yellow
Me.ResumeLayout(False)

End Sub

#End Region
Dim localhostname As String
Dim localhostentry As IPHostEntry
Dim aliaslist As String()
Dim addrlist As IPAddress()
Dim i As Integer
Dim strtemp As String

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Try
localhostname = System.Net.Dns.GetHostName
localhostentry = System.Net.Dns.GetHostByName(localhostname)
TextBox1.Text = localhostname
aliaslist = localhostentry.Aliases
For i = 0 To aliaslist.Length - 1
strtemp = strtemp & aliaslist(i).ToString & ","
Next
TextBox2.Text = strtemp
strtemp = ""

addrlist = localhostentry.AddressList
For i = 0 To addrlist.Length - 1
strtemp = strtemp & addrlist(i).ToString & ","

Next
TextBox3.Text = strtemp
strtemp = ""
Catch ex As Exception
MsgBox("wrong", MsgBoxStyle.OKOnly, "解析本机地质出错")

End Try


End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim hostname As String
Dim hostentry As IPHostEntry
Dim othername As String()
Dim ipaddr As IPAddress()
hostname = TextBox1.Text
Try
hostname = TextBox1.Text
hostentry = System.Net.Dns.GetHostByName(hostname)
othername = hostentry.Aliases
For i = 0 To othername.Length - 1
strtemp = strtemp & othername(i).ToString & ","
Next
TextBox2.Text = strtemp
strtemp = ""
ipaddr = hostentry.AddressList
For i = 0 To ipaddr.Length - 1
strtemp = strtemp & ipaddr(i).ToString & ","
Next
TextBox3.Text = strtemp
strtemp = ""

Catch ex As Exception
MsgBox("无法解析", MsgBoxStyle.OKOnly, "解析出错")
End Try

End Sub

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

Dim hostentry As IPHostEntry

Dim ipaddr As IPAddress

Try
ipaddr = IPAddress.Parse(TextBox3.Text)
hostentry = System.Net.Dns.GetHostByAddress(ipaddr)
TextBox1.Text = hostentry.HostName

Catch ex As Exception
MsgBox("无法解析", MsgBoxStyle.OKOnly, "解析出错")
End Try
End Sub
End Class
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值