2

我是 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[]) 行:不可用 [本机方法]

4

2 回答 2

0

使用android:onClick属性时记住这一点

属性的android:onClick"isConnectedToServer"是用户单击按钮时系统调用的活动中方法的名称。

打开Activity类(位于项目的src/目录下),添加对应的方法:

/** 当用户点击发送按钮时调用 */

public void sendMessage(View view) {
    // Do something in response to button
}

这需要您导入View该类:

为了让系统将此方法与赋予 android:onClick 的方法名称相匹配,签名必须与所示完全相同。具体来说,该方法必须:

 1). Be public.
 2). Have a void return value.
 3). Have a View as the only parameter (this will be the View that was clicked).
于 2013-01-01T05:14:16.880 回答
0

您可以使用此功能知道链接是否已打开,互联网是否已连接

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;
}
于 2013-01-01T09:03:47.613 回答