// 实现根据urlTitle的模糊查询
  public static List<URLInfoBean> queryUrlInfoByTitleBlurry(Context context, String title) {
    createURLTable(context);
    //					String sql = "select * from "+TablesName.URL_TABLE+" where "+URLTableBean.URL_TITLE +"
    // like '%"+title+"%'";
    List<URLInfoBean> list = URLInfoDao.queryUrlInfoByTitleBlurry(db, title);

    if (db != null) {
      db.close();
    }

    return list;
  }