[ 本帖最后由 yuandjing 于 2009-1-8 16:05 编辑 ]作者: caption 时间: 2009-1-8 15:32
watir-文件操作(读取文件) http://www.51testing.com/?44957/ ... e_itemid_97493.html
ruby_学习笔记:读写文件 http://www.51testing.com/?46209/ ... e_itemid_80644.html作者: ChanJian910 时间: 2009-1-11 21:47
谢谢caption的回复作者: 村上舞!舞!舞 时间: 2009-1-20 16:01 标题: 在Robot中读取文本文件内容 Sub main
Dim GetTxtdate as String
Dim x
Dim y
Open "c:\temp001.txt" for Input as #1
x=1
Do Until x=Lof(1)
Line Input #1, GetTxtdate
x=x+1
y=Seek(1)
If y>Lof(1) then
x=Lof(1)
Else
Seek 1,y
End If
MsgBox GetTxtdate
Loop
Close #1
End Sub