Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道该怎么说,但是就这样吧。我的应用程序已与服务器建立连接。如何测试应用程序以检查连接是否关闭以及资源是否已释放。
您可以使用
$ adb shell netstat | grep ESTABLISHED
或类似的东西来监控连接。
如果您对特定服务器感兴趣,您可以这样做
$ adb shell netstat | grep <SERVER_IP> | grep ESTABLISHED