zoukankan      html  css  js  c++  java
  • cmd命令运行jar包

           开发中需要反复的清除服务器端数据,而客户端用的是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%

  • 相关阅读:
    accpet和connect设置超时
    两个模块的函数如何相互调用?
    有头结点的双向链表
    信号量PV操作实现进程间同步与互斥
    linux read write函数
    函数用指针传参挂死分析
    TCP/IP为什么需要四次握手和三次挥手
    负数在内存中的表示
    malloc的堆内存挂死原因;负数的表示
    Makefiel----no rule to make target 错误问题
  • 原文地址:https://www.cnblogs.com/KiloNet/p/1905566.html
Copyright © 2011-2022 走看看