AUTOIT3 如何一行一行的循环读TXT内容,然后粘贴到其他窗口的编辑框里?
1个回答
展开全部
$file = FileOpen("test.txt", 0)
; Check if file opened for reading OK
If $file = -1 Then
MsgBox(48, "Error", "Unable to open file.")
Exit
EndIf
; Read in lines of text until the EOF is reached
While 1
$line = FileReadLine($file)
If @error = -1 Then ExitLoop ;读到文件末尾
; 用 ControlSetText 将该行文本$line粘贴到其他窗口的编辑框里
; 你的后续动作
Sleep(2000)
Wend
FileClose($file)
; Check if file opened for reading OK
If $file = -1 Then
MsgBox(48, "Error", "Unable to open file.")
Exit
EndIf
; Read in lines of text until the EOF is reached
While 1
$line = FileReadLine($file)
If @error = -1 Then ExitLoop ;读到文件末尾
; 用 ControlSetText 将该行文本$line粘贴到其他窗口的编辑框里
; 你的后续动作
Sleep(2000)
Wend
FileClose($file)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询