使用Batch从在线URL下载文本

时间:2013-09-15 15:25:57

标签: windows url batch-file download text-files

我一直在编写批处理程序(Windows 8),它检测我正在自动运行的另一个程序的版本。我想这样做,以便当其他任何人使用该程序时,它仍然可以正常检测。

我想出了一个解决方案,让批处理文件从URL中读取文本,并将其设置为批处理文件本身的变量。但是,我只想出两种方法来做到这一点。

我可以直接从http://foo.com/example.html下载文字。我正在使用的真实网站的HTML代码如下:

v.1.0.0

这是实际的代码,没有任何格式化。 我也可以下载html文件本身,并批量转换为另一种格式,.txt或.xyz。 我不想使用外部程序,我不希望其他人安装程序让我的工作。

基本上,我想要一种从this page下载文本的方法,并将其作为newestversion.adv文件保存在与此批处理文件相同的目录中。从这里,我知道该怎么做:另一个程序将调用这个批处理文件来获取最新版本,如果它与程序定义的版本不同,它会发出一个echo消息。

提前致谢!

2 个答案:

答案 0 :(得分:1)

@ECHO OFF &SETLOCAL
for /f %%a in ('wget -O- http://adventureversionget.6te.net/AdventureVersion.html 2^>nul') do (echo %%a)>newestversion.adv

wget for Windows

答案 1 :(得分:0)

这是一个使用VBS的批处理文件,它可以在这里运行。

@echo off
 >"%temp%\geturl.vbs" echo Set objArgs = WScript.Arguments
>>"%temp%\geturl.vbs" echo url = objArgs(0)
>>"%temp%\geturl.vbs" echo pix = objArgs(1)
>>"%temp%\geturl.vbs" echo With CreateObject("MSXML2.XMLHTTP")
>>"%temp%\geturl.vbs" echo .open "GET", url, False
>>"%temp%\geturl.vbs" echo .send
>>"%temp%\geturl.vbs" echo a = .ResponseBody
>>"%temp%\geturl.vbs" echo End With
>>"%temp%\geturl.vbs" echo With CreateObject("ADODB.Stream")
>>"%temp%\geturl.vbs" echo .Type = 1 'adTypeBinary
>>"%temp%\geturl.vbs" echo .Mode = 3 'adModeReadWrite
>>"%temp%\geturl.vbs" echo .Open
>>"%temp%\geturl.vbs" echo .Write a
>>"%temp%\geturl.vbs" echo .SaveToFile pix, 2 'adSaveCreateOverwrite
>>"%temp%\geturl.vbs" echo .Close
>>"%temp%\geturl.vbs" echo End With

cscript /nologo "%temp%\geturl.vbs" http://adventureversionget.6te.net/AdventureVersion.html newestversion.adv 2>nul 
del "%temp%\geturl.vbs"