赞
踩
启动脚本
@echo off
start javaw -jar demo.jar
exit
停止脚本
@echo off
taskkill /f /im javaw.exe
exit 0
精确停止脚本
@echo off
chcp 65001
set port=8081
for /f "tokens=1-5" %%i in ('netstat -ano^|findstr ":%port%"') do (
echo kill the process %%m who use the port %port%
echo 正在关闭,请等待 %%m
taskkill /f /pid %%m
)
Pause
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。