我是 Android 和 Java 的新手,在较小程度上,如果这个问题很荒谬,请原谅我。**如果这篇文章的格式很糟糕,我也很抱歉,请理解我是新来的,是的,说明无处不在,但我不知道如何添加后续帖子,所以我只是编辑了原始帖子并添加了我收到的新信息.
我在一个 Android 项目中有一个活动,必须检查它是否可以连接到服务器。我只有一个按钮,单击该按钮将运行代码以检查服务器连接。
当我单击按钮时,应用程序关闭(Unfortunately .... has stopped).
如果需要,我可以提供完整的错误日志。这是我的代码:
注意: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,其内容如下:
<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 中的 Debug 窗口视图弹出如下:
Thread [<1> main] (Suspended (exception NetworkOnMainThreadException))
Socket.connect(SocketAddress, int) line: 849<--它立即指向这个。
HttpConnection.(HttpConnection$Address, int) line: 76 HttpConnection.(HttpConnection$Address, int, HttpConnection$1) line: 50
HttpConnection$Address.connect(int) line: 340
HttpConnectionPool.get(HttpConnection$Address, int) line: 87
HttpConnection.connect(URI, SSLSocketFactory, Proxy, boolean, int) line: 128
HttpEngine.openSocketConnection() line: 316 HttpEngine.connect() line: 311
HttpEngine.sendSocketRequest() line: 290
HttpEngine.sendRequest() line: 240
HttpURLConnectionImpl.connect() 行:81
StartActivity.isConnectedToServer(String, int) line: 37 StartActivity.connectionReturn(View) line: 50
Method.invokeNative(Object, Object[], Class, Class[], Class, int, boolean) line: 不可用 [native method]
Method.invoke(Object, Object...) line: 511
View$1.onClick(View) line: 3592 Button(View).performClick() line: 4202
View$PerformClick.run() line: 17340 Handler.handleCallback(Message ) line: 725
ViewRootImpl$ViewRootHandler(Handler).dispatchMessage(Message) line: 92 Looper.loop() line: 137 ActivityThread.main(String[]) line: 5039
Method.invokeNative(Object, Object[], Class, Class [], Class, int, boolean) line: 不可用 [native method]
Method.invoke(Object, Object...) line: 511
ZygoteInit$MethodAndArgsCaller.run() 行:793
ZygoteInit.main(String[]) 行:560 NativeStart.main(String[]) 行:不可用 [本机方法]