应用程序在端口创建时死亡

发布于 2024-10-17 12:07:48 字数 775 浏览 3 评论 0原文

尝试在以下代码中打开连接时,我的应用程序崩溃了。我相信这是因为该端口正在被使用,但我不确定。如果您发现下面的代码有任何问题或知道问题可能是什么,请告诉我。该应用程序使其能够

Log.v("connectdevice", "之后 ipadress");

有时它会超过这一点。但很少见。而且,没有发现异常。

提前致谢!

    try {
        Log.v("connectdevice", "inside make connection");
        InetAddress host = InetAddress.getByName("192.168.201.65");
        Log.v("connectdevice", "after ipadress");
        socket = new Socket(host.getHostName(), 7777);
        Log.v("connectdevice", "after socket");
        connected = true;
        } catch (UnknownHostException e) {
            connected = false;
            e.printStackTrace();
        } catch (IOException e) {
            connected = false;
            e.printStackTrace();
        }

My application crashes when trying to open a connection in the following code. I believe it is because the port is being used, but im not sure. Let me know if you see anything wrong with the code below or have any idea what the problem may be. The application makes it to

Log.v("connectdevice", "after
ipadress");

SOME times it will make it past that point. But is rarely. Also, there is no exception caught.

Thanks in advance!

    try {
        Log.v("connectdevice", "inside make connection");
        InetAddress host = InetAddress.getByName("192.168.201.65");
        Log.v("connectdevice", "after ipadress");
        socket = new Socket(host.getHostName(), 7777);
        Log.v("connectdevice", "after socket");
        connected = true;
        } catch (UnknownHostException e) {
            connected = false;
            e.printStackTrace();
        } catch (IOException e) {
            connected = false;
            e.printStackTrace();
        }

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

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

发布评论

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

评论(2

心安伴我暖 2024-10-24 12:07:48

使用

Log.e("Error", "exception", e);

这种方式你可以看到Logcat上的异常

Use

Log.e("Error", "exception", e);

This way you can see the Exceptions on Logcat

穿越时光隧道 2024-10-24 12:07:48

[由 ssfn 发表]
这很奇怪。我只看到新的
Socket(host.getHostName(), 7777) 是一个
不太理想,因为这可能(?)
包括反向 DNS 查找。插座
将接受 InetAddress。只需使用
套接字(主机,7777)。

如果 ssfn 过来并把他的答案放在这里,我会尽快接受。在那之前,这是公认的答案。

[Posted by ssfn]
That is strange. I only see that new
Socket(host.getHostName(), 7777) is a
little sub-optimal, as this might (?)
include a reverse DNS lookup. Socket
will accept InetAddress. Just use
Socket(host, 7777).

If ssfn comes by and puts his answer here, i am going to accept it asap. Until then, this is the accepted answer.

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