gpt4 book ai didi

android - 为什么服务器/客户端套接字停止工作

转载 作者:行者123 更新时间:2023-12-03 06:31:14 24 4
gpt4 key购买 nike

我正在做一个客户端服务器应用程序,我在客户端和服务器端使用开放式套接字建立连接。

客户端(Android手机):

 try {
InetAddress serverAddr = InetAddress.getByName(serverIp);
socket = new Socket(serverAddr, PORT);
}

服务器:
        sS = new ServerSocket(PORT);
sO = new Socket();
sO = sS.accept();

两者具有相同的PORT值,并且我确定服务器IP地址正确。它上个月有效,但是当我昨天尝试时,它不再有效。

如果我再次克隆它,但仍然不起作用(从有效的地方提交)。

我有互联网许可:
    <uses-permission android:name="android.permission.INTERNET" />

我不知道它是否与gradle有关:
android {
compileSdkVersion 21
buildToolsVersion '23.0.2'

defaultConfig {
applicationId "com.example.fran.dibcel"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.googlecode.json-simple:json-simple:1.1.1'}

最佳答案

最后是Windows的防火墙。我将其关闭,然后毫无问题地打开套接字连接

关于android - 为什么服务器/客户端套接字停止工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37367076/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com