用vbnet编写一个读取txt数据的程序
时间: 2023-06-15 17:08:22 浏览: 110
以下是一个简单的 VB.NET 程序,可以读取一个文本文件并显示在窗体的文本框中:
```vbnet
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
' 打开文件对话框,选择要读取的文本文件
Dim openFileDialog1 As New OpenFileDialog()
openFileDialog1.Filter = "文本文件(*.txt)|*.txt"
openFileDialog1.Title = "选择文本文件"
If openFileDialog1.ShowDialog() = DialogResult.OK Then
' 读取选中的文本文件
Dim fileContents As String
fileContents = My.Computer.FileSystem.ReadAllText(openFileDialog1.FileName)
' 在文本框中显示文件内容
TextBox1.Text = fileContents
End If
End Sub
End Class
```
在上面的代码中,我们使用了 `OpenFileDialog` 对象来让用户选择一个文本文件,然后使用 `My.Computer.FileSystem.ReadAllText` 方法来读取文件内容,并把文件内容显示在一个 `TextBox` 控件中。
阅读全文