标签:java on as window windows class net list c
//查找出占用8086端口进程的ID netstat -nao | findstr 8086 //本机输出效果为: TCP 0.0.0.0:8086 0.0.0.0:0 LISTENING 804 //很显然,进程ID是804 //找出ID为804的进程名 tasklist | find 804 //本机输出效果为: emule.exe 804 Console 1 82,068 K //哈哈,原来 是emule占用了我的8086端口。
标签:java on as window windows class net list c
原文地址:http://my.oschina.net/u/876290/blog/335687