vb.net读写文本

前端之家收集整理的这篇文章主要介绍了vb.net读写文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

vb.net通过streamReader和streamWrite对文本读写有更强大的支持

实例代码

读文本文件

dim file as new system.io.streamReader("test.txt")

dim oneline as string

oneline=file.readline'读取一行

while oneline<>""

'输入结果

msgBox(oneline)

oneline=file.readline

end while

file.close()

写文本文件

dim file as new system.io.streamwrite("test.txt",true)' true:以追加的方式写文件

file.writeline("sssssssssssss")

file.close()

原文链接:https://www.f2er.com/vb/262273.html

猜你在找的VB相关文章