加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

VB.NET 一行一行读取记事本里面的数据和一行行写入数据

(2011-04-13 09:08:40)
标签:

记事本

读取

数据

一行行

分类: VB.NET编程

'读取方法一:

Imports System.IO
Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Me.ListBox1.Items.Clear()
        Dim StrRed As StreamReader = New StreamReader("D:\111.txt", System.Text.Encoding.Default)

        While Not StrRed.EndOfStream
            Me.ListBox1.Items.Add(StrRed.ReadLine())
        End While
        StrRed.Dispose()

    End Sub
End Class

'读写方法二:

写入:

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        Dim strR As New StreamWriter("D:\111.txt", True)'参数True表示 在原来的数据上面添加,如果为False这删除原来的数据 重新写入数据
        strR.WriteLine(Me.TextBox2.Text)
        strR.Dispose()
End Sub

读取:

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
        Dim strR As New StreamReader("D:\111.txt")

        While Not strR.EndOfStream
            Me.TextBox1.Text += strR.ReadLine() & vbCrLf
        End While
        strR.Dispose()
End Sub

 

 

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有