检查与服务器的连接

时间:2013-01-01 05:07:07

标签: java android button

我是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视图(即connectionReturn(View vw)),并在onClick中看到了错误,现在它调用了connectionReturn方法。我没有得到同样的错误,我现在得到新的错误!当我点击按钮时,应用程序冻结,Eclipse打开Socket.class并说:

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

Eclipse中的Debug窗口视图弹出:

线程[&lt; 1&gt; main](暂停(例外NetworkOnMainThreadException))
    
    Socket.connect(SocketAddress,int)行:849&lt; - 它立即指向此。
    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(查看)行:50
    Method.invokeNative(Object,Object [],Class,Class [],Class,int,boolean)line:not available [native method]
    Method.invoke(Object,Object ...)行:511
    查看$ 1.onClick(查看)行:3592     按钮(视图).performClick()行:4202
    查看$ PerformClick.run()行:17340     Handler.handleCallback(消息)行:725
    ViewRootImpl $ ViewRootHandler(Handler).dispatchMessage(Message)行:92     Looper.loop()行:137     ActivityThread.main(String [])行:5039
    Method.invokeNative(Object,Object [],Class,Class [],Class,int,boolean)line:not available [native method]
    Method.invoke(Object,Object ...)行:511
    ZygoteInit $ MethodAndArgsCaller.run()行:793
    ZygoteInit.main(String [])行:560     NativeStart.main(String [])行:不可用[本机方法]

2 个答案:

答案 0 :(得分: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).

答案 1 :(得分: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;
}