【问题标题】:Check connection to server检查与服务器的连接
【发布时间】:2013-01-01 17:03:47
【问题描述】:

我是 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 窗口视图弹出如下:

线程 [ 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) 行:不可用 [本机方法]
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) 行:不可用 [本机方法]
Method.invoke(Object, Object...) 行:511
ZygoteInit$MethodAndArgsCaller.run() 行:793
ZygoteInit.main(String[]) 行:560 NativeStart.main(String[]) 行:不可用 [本机方法]

【问题讨论】:

  • 你的端口号是多少?

标签: java android button


【解决方案1】:

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

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;
}

【讨论】:

    【解决方案2】:

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

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

    打开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).
    

    【讨论】:

      猜你喜欢
      • 2017-12-16
      • 2016-06-18
      • 2012-10-05
      • 1970-01-01
      • 1970-01-01
      • 2010-09-26
      • 2016-04-16
      • 2012-06-11
      • 2019-06-04
      相关资源
      最近更新 更多