坛子里有没有网络高手,请进
My OS is Win xp, I want to dump some URLs into one file using batch processing.
For example,
I have the following URLs:
http://www.aaa.bbb.com/1
http://www.aaa.bbb.com/2
http://www.aaa.bbb.com/3
http://www.aaa.bbb.com/4
...
http://www.aaa.bbb.com/99
http://www.aaa.bbb.com/100
Please note the content of above URLs is all text.
So, I want to write all the contents into one file for furthur processing.
It seems I can use for loop to do it. (batch mode)
You can use:
(1) JavaScript or else. (But Javascript can not write file on local harddisk,
of course, you can write the content into one html file, then "save is".)
(I have tried this, failed. because, I did not use HTML and Script for long time.)
(2) Use some tools in DOS mode.
for (i = 1; i <= 100, i++)
dump http://www.aaa.bbb.com/i > tmp.txt
(I have tried this, but in MS-DOS, difficult to config the network.)
(3) Use some tools in windowns mode.
Any tools can do this???
I do not have VB on hand, otherwise, I can use it to develop me.
VB have HTTP control activex.)
Thanks a lot.