如何获取超长参数的网址的数据!!
网址:http://..........com=参数1,参数2.......................参数100.............,参数n取网址数据最大到参数100,如何取到参数n的全部数据 ????????
结果全部记录在 1.TXT lz,你要是提问最好写个大概的可供参考的样式,这么写怎么答,告诉你用stringsplit,_filewritefromarray,你肯定还要问 回复 2# netegg
参数部分 已经获取 $a = _函数("文件.mdb")
然后就是
for $i = 0 to int((ubound($a)-1)/100)
for $j = $i *100 to ($i+1)*100-1
;consolewrite($j & @cr)
;MsgBox(0,'',$j)
$var &=$a[$j]&","
next
;consolewrite(@cr & $i & @cr)
;MsgBox(0,'',$i)
Local $hDownload = InetGet('......................='&StringLower($var), '1.txt', 1, 1)
next
InetClose($hDownload)
代码失败!!!!!!
页:
[1]