VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 编程开发 > Objective-C编程 >
  • VB.net 文件读取、写入、追加操作

Dim PathUserData As String = Application.StartupPath & "\实操统计sql.txt"
TextTB.Text = System.IO.File.ReadAllText(PathUserData)
‘或者用 System.IO.File.ReadAllText(PathUserData, System.Text.Encoding.UTF8)
上面这个是读取
System.IO.File.ReadAllText(PathUserData, System.Text.Encoding.UTF8)   此用法是把编码方式转为UTF8
  • 1
  • 2
  • 3
  • 4
  • 5

写入如下:

Dim PathUserData As String = Application.StartupPath & "\实操统计sql.txt"
Dim t As System.IO.StreamWriter = New System.IO.StreamWriter(PathUserData, True, System.Text.Encoding.UTF8)
t.Write(TextTB.Text)
t.Close()
  • 1
  • 2
  • 3
  • 4

追加如下:

Dim PathUserData As String = Application.StartupPath & “\实操统计sql.txt” Dim t As System.IO.StreamWriter = New System.IO.StreamWriter(PathUserData, True, System.Text.Encoding.UTF8) t.WriteLine(TextTB.Text) t.Close()

同样的,你可vb.net教程以把

System.Text.Encoding.UTF8
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/wang19850219/article/details/41543001

相关教程