2013年6月27日

android 数据存储之SDK

只有注册用户登录后才能阅读该文。 阅读全文

posted @ 2013-06-27 20:05 yujian_bcq 阅读(1) 评论(0) 推荐(0) 编辑

android 数据存储之SharedPreferences

只有注册用户登录后才能阅读该文。 阅读全文

posted @ 2013-06-27 19:58 yujian_bcq 阅读(1) 评论(0) 推荐(0) 编辑

android 之Notification

摘要: http://blog.csdn.net/qinjuning/article/details/6915482 阅读全文

posted @ 2013-06-27 15:55 yujian_bcq 阅读(88) 评论(0) 推荐(0) 编辑

java 正则表达式

摘要: Pattern pattern = Pattern.compile("^[A-Za-z]+$");if (pattern.matcher(str).matches()) { //匹配 }else{ //不匹配 }1:汉字表达式 [\u4e00-\u9fa5]2:大小写字母表达式 ^[A-Za-z]+$3:数字表达式 [0-9]4:邮箱 \\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*5:手机号码 ^1\\d{10}$ 阅读全文

posted @ 2013-06-27 15:01 yujian_bcq 阅读(154) 评论(0) 推荐(0) 编辑

导航