赞
踩
在 Visual Basic 中,可以使用 FileSystemObject 来读取文件。示例代码如下:
- Dim fso As New FileSystemObject
- Dim txtFile As TextStream
- Set txtFile = fso.OpenTextFile("C:\example.txt", ForReading)
-
- Dim strText As String
- strText = txtFile.ReadAll
- txtFile.Close
-
- '在这里使用读取的文本
这段代码会打开 "C:\example.txt" 文件,读取其中的所有文本并将其存储在
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。