在mac下,使用android studio debug模式的时候报错了,
Unable to open debugger port (localhost:8617): java.net.ConnectException "Connection time out"
通过命令查看本机端口发现没有被占用,后来发现是本机host的地址被改过了,打开mac电脑的hosts文件(cmd窗口执行命令:sudo vi /etc/hosts):
里面localhost需要设置成127.0.0.1。之前写的是别的地址,所以debug模式提示连接超时。通过这个也可以发现,调试程序是通过localhost定位的。
网友评论