使用计算机名称进行套接字连接时出现问题?

发布于 2024-11-19 19:35:24 字数 320 浏览 2 评论 0原文

我想通过套接字连接将手机连接到电脑。

但只有当我使用IP地址时才成功。我尝试使用计算机名称,但它抛出 UnKnowHostException

mySocket = new Socket("192.168.1.100", 10000); //it's ok!

mySocket = new Socket("My_PC_NAME", 10000); //it throw UnKnowHostException !

我的手机正在使用WIFI,其IP是:192.168.1.99

请帮助我, 谢谢 !

I want to connect my cell-phone to PC by using socket connection.

But it's only successful when I use IP Address. I try to use Computer Name but it throws UnKnowHostException.

mySocket = new Socket("192.168.1.100", 10000); //it's ok!

mySocket = new Socket("My_PC_NAME", 10000); //it throw UnKnowHostException !

My cell phone is using WIFI and its IP is : 192.168.1.99

Please help me,
Thanks !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南城追梦 2024-11-26 19:35:24

这是很正常的,因为您的 Android 设备无法访问为 IP 地址分配名称的 DNS。由于它不是您的 PC 网络的一部分,因此您不能使用计算机名称进行套接字连接。

This is quite normal as your android device hasn't access to the DNS that assigns names to IP addresses. Since it isn't part of your PC network, you can't use computer names for the socket connection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文