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%

  • 相关阅读:
    用Python发生RestFul API POST和GET请求
    C# 8.0中的新功能
    A股数据分析之收集数据:股票列表和股价
    A股数据分析之收集数据:公司详细信息
    VS 2019中修改C#语言版本
    Weak Event Manager
    在WPF中使用MVVM的方式关闭窗口
    C# GDI绘制仪表盘(纯代码实现)
    C#中实现文件拖放打开的方法
    C#设置自定义文件图标实现双击启动
  • 原文地址:https://www.cnblogs.com/KiloNet/p/1905566.html
Copyright © 2011-2022 走看看