vb.net读取及写入文件的方法
发布时间:2015-01-11 作者: 点击:698
vb.net读取文件有以下几种方法:
Dim fileContents As String fileContents = My.Computer.FileSystem.ReadAllText("c:/hongxuejing.txt") '读取 fileContents = IO.File.ReadAllLines("c:/hongxuejing.txt") fileContents = IO.File.ReadAllText("c:/hongxuejing.txt") 或者使用 IO.File.ReadAllBytes("c:/hongxuejing.txt") 读取文件的字节。 vb.net创建或写入文件的方法如下: My.Computer.FileSystem.WriteAllText("c:/hongxuejing.txt", "adsfwqetiuj", False, System.Text.Encoding.Unicode) IO.File.CreateText("c:/hongxuejing.txt") IO.File.WriteAllText("c:/hongxuejing.txt", "") IO.File.WriteAllLines("c:/hongxuejing.txt", New String() {}) IO.File.WriteAllBytes("c:/hongxuejing.txt", New Byte() {})
判断文件是否存在的方法如下:
IO.File.Exists("c:/abc.txt")
更多关于 vb.net,读取文件,写入文件 的信息
- vb.net调用java axis2生成的soap webservices(2015-04-03)
- vb.net的接口定义及使用(2015-02-21)
- vb.net中自定义结构structure的定义及使用(2015-02-17)
- vb.net中声明createfile(2015-02-17)
- vb.net的位移及与、或操作(2015-02-01)
- vb.net的char数组转成String(2015-02-01)
- vb.net char转integer与integer转char(2015-01-17)
- vb.net中实现java字符串的hashcode(2015-01-17)
- vb.net 、java、vb等获取guid的方法(2015-01-11)
本站部分文章转载于网上,版权归原作者所有。如果侵犯您的权益,请Email和本站联系!