需要用到的工具有wget,fetion,fetion支持包等。所有文件放在一个文件夹下,然后运行批处理sendweather.bat或fetion.bat
主要代码如下:sendweather.bat@echo offwget -q -O temp.txt findstr "深圳" temp.txt>temp1.txtfor /f "eol=< tokens=2,3* delims=, " %%i in (temp1.txt) do @echo %%i %%j %%k %%l>temp2.txtfor /f "tokens=3,4,5,6,7 delims=, " %%i in (temp2.txt) do (set date=%%iset weather=%%jset low=%%kset high=%%l)echo 今天是:%date:~1,6% && echo 今天是:%date:~1,6%>%date%天气.txtecho 今日天气:%weather:~1,5% && echo 今日天气:%weather:~1,5%>>%date%天气.txt echo 最低温度:%low:~1,2%℃ && echo 最低温度:%low:~1,2%℃>>%date%天气.txtecho 最高温度:%high:~1,2%℃ &&echo 最高温度:%high:~1,2%℃ >>%date%天气.txtdel temp1.txt del temp2.txtdel temp.txtecho 按任意键发送今日天气!pause>nulset weath=今天是:%date:~1,6%,今日天气:%weather:~1,5%,最低气温:%low:~1,2%℃,最高气温:%high:~1,2%℃.set /a a=0for /f %%i in (phone.txt) do (fetion --mobile=1342874#### --pwd=******** --to=%%i --msg-gb=%weath%set /a a=a+1)set a:set weath:echo 恭喜你,%a%条信息发送成功!升级版本fetion.bat@echo off:beginclscolor 02echo #####################飞信多功能应用#########################echo.echo 1.查看并新增通讯录echo 2.给指定好友发送短信息echo 3.给通讯录中的所有好友群发信息echo 4.向所有好友发送今日天气信息echo 5.退出echo.echo ############################################################set /pset /p id=请输入选项(1/2/3/4/5):if %id%==1 goto aif %id%==2 goto bif %id%==3 goto cif %id%==4 goto dif %id%==5 goto end:aset /p ph=请输入要增加的号码:echo %ph%>>phone.txttype phone.txtecho 添加联系人成功!set id=set /p answer=继续添加请按1,返回主菜单请按回车键:if %answer%==1 goto agoto begin:bset /p ph=请输入联系人电话:set /p file=请输入你想说的话:fetion --mobile=1342####### --pwd=******** --to=%ph% --msg-gb=%file%echo 恭喜你,短信发送成功!set ph=set /p answer=继续发送请按1,返回主菜单请按回车键:if %answer%==1 goto bgoto begin:cset /p file=请输入你想说的话:set /a a=0for /f %%i in (phone.txt) do (fetion --mobile=134287##### --pwd=******** --to=%%i --msg-gb=%file%set /a a=a+1)echo 恭喜你,%a%条信息发送成功!set file=set /p answer=继续发送请按1,返回主菜单请按回车键:if %answer%==1 goto cgoto begin:dwget -q -O temp.txt findstr "深圳" temp.txt>temp1.txtfor /f "eol=< tokens=2,3* delims=, " %%i in (temp1.txt) do @echo %%i %%j %%k %%l>temp2.txtfor /f "tokens=3,4,5,6,7 delims=, " %%i in (temp2.txt) do (set date=%%iset weather=%%jset low=%%kset high=%%l)echo 今天是:%date:~1,6% && echo 今天是:%date:~1,6%>%date%天气.txtecho 今日天气:%weather:~1,5% && echo 今日天气:%weather:~1,5%>>%date%天气.txt echo 最低温度:%low:~1,2%℃ && echo 最低温度:%low:~1,2%℃>>%date%天气.txtecho 最高温度:%high:~1,2%℃ &&echo 最高温度:%high:~1,2%℃ >>%date%天气.txtdel temp1.txt del temp2.txtdel temp.txtecho 按任意键发送今日天气!pause>nulset weath=今天是:%date:~1,6%,今日天气:%weather:~1,5%,最低气温:%low:~1,2%℃,最高气温: %high:~1,2%℃. set /a a=0 for /f %%i in (phone.txt) do ( fetion --mobile=1342####### --pwd=********** --to=%%i --msg-gb=%weath% set /a a=a+1 ) set a: set weath: echo 恭喜你,%a%条信息发送成功! echo 按任意键返回主菜单 pause goto begin :end