如何实现ConnectionException -Android



我正在与php mysql travelez中的数据库进行通信,以在ListView中显示结果,但我正在尝试实现一个ExeptionConnection,用于3G或WIFI,但应用程序无法连接,返回到以前的Activity并显示Toast。但不是如何在我的代码中实现它,我只能实现jsonexception。这是我的代码:

protected String doInBackground(String... args) {

        List<NameValuePair> params = new ArrayList<NameValuePair>();
        JSONObject json = jParser.makeHttpRequest(url_list_rs, "GET",
                params);

        Log.d("All Products: ", json.toString());
        try {

            int success = json.getInt(TAG_SUCCESS);
            if (success == 1) {
                daftar_rs = json.getJSONArray(TAG_DAFTAR_RS);
                for (int i = 0; i < list_rs.length(); i++) {
                    JSONObject c = list_rs.getJSONObject(i);
        //Process Code
                }
            } else { 
            }
        } catch (JSONException e) {
            e.printStackTrace();
        }
        return null;
    }

其中url_list_rs是我的php的url。在哪里我可以实现ExeptionConnection?有人能帮忙吗?谢谢主人!

如果你想创建自己的异常,你可以这样做:

//create a new Exception class    
public class ConnectionException extends Exception {
    public ConnectionException(String message){
         super(message);
    }
}
在你的makeHttpRequest方法
if(no connection) { //check connection
    throw new ConnectionException ("No connection!");
} else { ... }

最后,try-catch块

try {
    JSONObject json = jParser.makeHttpRequest(url_list_rs, "GET",
            params);
catch(ConnectionException ex) {
    ex.printStackTrace();
}

注意:我不确定这是否是最佳实践

相关内容

  • 没有找到相关文章

最新更新