天堂向右,我依然向左

天下之大,虽离家千里,何处不可往!何事不可为!
生活之路,纵坎坷曲折,当奋斗不息,则精彩纷呈!

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

       开发中需要反复的清除服务器端数据,而客户端用的是android,每次清除数据麻烦。所以用了一个批处理来执行:

方式一,直接写死:

echo off
echo ***********begin***********
echo type list:
echo     1: Contact
echo     2: Album
echo     3: Folder
echo     4: MailProxy
echo ***********end**************

set deviceid=88888888888
set type=4

java -jar Clean.jar %deviceid% %type%

 

 

方式二,动态输入:

 

echo off
echo ***********begin***********
echo type list:
echo     1: Contact
echo     2: Album
echo     3: Folder
echo     4: MailProxy
echo ***********end**************

set /p deviceid=Please input the deviceid:
echo %deviceid%

set /p type=Please input the type number:
echo %type%

java -jar MapClean_fat.jar %deviceid% %type%

 

 

posted on 2010-12-14 14:59  老舟  阅读(3594)  评论(0编辑  收藏  举报