我正在尝试为我的VB.NET应用程序创建一个平面文件数据库,因为它是一个小型学校项目,我不需要MySQL数据库。我正在使用visual basic进行编程,我想知道如何在文本文件中保存用户信息(用户名,密码),用tab分隔它,然后在登录时读取它。 基本上是使用平面文件数据库的登录/注册系统。有没有人有任何关于从何处开始以及如何通过选项卡分隔数据的建议,甚至在阅读数据时忽略标签?
非常感谢,提前。
答案 0 :(得分:0)
这应该对你有用。
阅读数据:
Dim ofd1 As New OpenFileDialog
if ofd1.ShowDialog() = DialogResult.OK then
Dim reader As New StreamReader(ofd1.FileName)
Do While reader.Peek() >= 0
Dim curline As String = reader.ReadLine()
Dim vals() As String = curline.Split(vbTab)
Dim username as string = vals(0)
Dim password as string = vals(1)
MessageBox.Show("username: " & username)
MessageBox.Show("password: " & password)
Loop
reader.Close()
end if
file.txt的
username1(tab)password1
username2(tab)password2