gpt4 book ai didi

java - 检查与服务器的连接

转载 作者:行者123 更新时间:2023-12-01 04:56:10 25 4
gpt4 key购买 nike

我是 Android 和 Java 的新手,程度较轻,所以如果这个问题很荒谬,请原谅我。 **如果这篇文章的格式很糟糕,我也很抱歉,请理解我是新来的,是的,说明无处不在,但我不知道如何添加后续帖子,所以我只是编辑了原始帖子并添加了我收到的新信息.

我在 Android 项目中有一个 Activity ,必须检查它是否可以连接到服务器。我只是有一个按钮,单击该按钮将运行代码来检查服务器连接。

当我单击按钮时,应用程序关闭(不幸的是......已经停止)。

如果需要,我可以提供完整的错误日志。这是我的代码:

注释:R.id.check_text 指的是布局 XML 中的 TextView

鉴于 isConnectedToServer 方法的结果,我需要更改此文本。

public class StartActivity extends Activity {

public static final int timeout = 3000;
public static final String TAG = "StartActivity";
public static final String url = "http://serverIP:port";

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_start);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_start, menu);
return true;
}

public boolean isConnectedToServer(String url, int timeout) {
try {
URL serverURL = new URL(url);
URLConnection urlconn = serverURL.openConnection();
urlconn.setConnectTimeout(timeout);
urlconn.connect();
return true;
} catch (IOException e) {
Log.e(TAG, e.getLocalizedMessage(), e);
} catch (IllegalStateException e) {
Log.e(TAG, e.getLocalizedMessage(), e);
}
return false;

}
public void connectionReturn(View view) {
boolean a;
a = this.isConnectedToServer(url, timeout);
if (a == true) {
EditText edConnStatus = (EditText) findViewById(R.id.check_text);
edConnStatus.setText("Connection established");

} else {
EditText edConnStatus = (EditText) findViewById(R.id.check_text);
edConnStatus.setText("Connection to server could not be established");
}

}
}

当然,在我的布局 XML 中,我有一个按钮,其内容如下:

    <Button
android:id="@+id/bn_checkconnection"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="connectionReturn"
android:text="@string/checkservconn" />

非常感谢您提供的任何帮助,谢谢大家。

最近编辑:我更改了connectionReturn方法以具有参数View View (即connectionReturn(View vw)),并发现onClick有错误,现在它调用connectionReturn方法。我没有遇到同样的错误,我现在遇到了新的错误!当我单击该按钮时,应用程序卡住并且 Eclipse 打开 Socket.class 并显示:

未找到来源JAR 文件 c:...\androidsdk\platforms\android17\android.jar 没有源附件附上下面的来源......

并且

Eclipse 中的调试窗口 View 会弹出:

线程 [<1> main](已挂起(异常 NetworkOnMainThreadException))

Socket.connect(SocketAddress, int) line: 849<-- 它立即指向此。
HttpConnection.(HttpConnection$Address, int) 行:76 HttpConnection.(HttpConnection$Address, int, HttpConnection$1) 行:50
HttpConnection$Address.connect(int) 行:340
HttpConnectionPool.get(HttpConnection$Address, int) 行:87
HttpConnection.connect(URI, SSLSocketFactory, Proxy, boolean, int) 行:128
HttpEngine.openSocketConnection() 行:316 HttpEngine.connect()行:311
HttpEngine.sendSocketRequest() 行:290
HttpEngine.sendRequest() 行:240
HttpURLConnectionImpl.connect()行:81
StartActivity.isConnectedToServer(String, int) 行:37 StartActivity.connectionReturn(View) 行:50
Method.invokeNative(Object, Object[], Class, Class[], Class, int, boolean) 行:不可用 [ native 方法]
Method.invoke(Object, Object...) 行:511
查看$1.onClick(查看)行:3592 Button(View).performClick() 行:4202
查看$PerformClick.run()行:17340 Handler.handleCallback(Message)行:725
ViewRootImpl$ViewRootHandler(Handler).dispatchMessage(Message) 行:92 Looper.loop() 行:137 ActivityThread.main(String[]) 行:5039
Method.invokeNative(Object, Object[], Class, Class[], Class, int, boolean) 行:不可用 [ native 方法]
Method.invoke(Object, Object...) 行:511
ZygoteInit$MethodAndArgsCaller.run() 行:793
ZygoteInit.main(String[]) 行:560 NativeStart.main(String[]) 行:不可用 [ native 方法]

最佳答案

您可以使用此功能了解链接是否可用、互联网是否已连接

public boolean isConnected() {
try {
ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = cm.getActiveNetworkInfo();

if (netInfo != null && netInfo.isConnected()) {
// Network is available but check if we can get access from the
// network.
URL url = new URL("www.google.com");
HttpURLConnection urlc = (HttpURLConnection) url
.openConnection();
urlc.setRequestProperty("Connection", "close");
urlc.setConnectTimeout(2000); // Timeout 2 seconds.
urlc.connect();

if (urlc.getResponseCode() == 200) // Successful response.
{
return true;
} else {
Log.d("NO INTERNET", "NO INTERNET");
showToast("URL down");
return false;
}
} else {
showToast("No Internet Connection");
}
} catch (Exception e) {
e.printStackTrace();
}
return false;
}

关于java - 检查与服务器的连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14107963/

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