码迷,mamicode.com
首页 > 其他好文 > 详细

一键结束port 5037占用

时间:2014-12-07 01:18:33      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   ar   color   os   sp   for   on   

输入cmd进入dos界面,进入android-sdk-windows\platform-tools目录,执行下面命令
启动adb start-server
出现下面错误
* daemon not running. starting it now on port 5037 *
ADB server didn‘t ACK
* failed to start daemon *

运行下面脚本,一键结束相关进程

# -*- coding: utf-8-*-
import subprocess
p=subprocess.Popen("netstat -ano",stdout=subprocess.PIPE)
stdoutdata,stderrdata=p.communicate(‘‘)
ss=stdoutdata.split("\r\n")
for s in ss:
    if(not s):
        continue;
    #print s;
    if s.find("127.0.0.1:5037") >0 and s.find("LISTENING")>0:
        pid=s[s.rindex(" ")+1:];
        subprocess.Popen("taskkill /F /T /PID "+str(pid),shell=True);
        break;

 

一键结束port 5037占用

标签:android   style   blog   ar   color   os   sp   for   on   

原文地址:http://www.cnblogs.com/baizx/p/4149013.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!