• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
开水房
ASP.NET
博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 2 3 4 5 6 7 ··· 26 下一页
2014年11月5日
转 Android开发笔记(成长轨迹)
摘要: http://blog.csdn.net/mad1989/article/details/9142557 阅读全文
posted @ 2014-11-05 15:14 白开水皮皮 阅读(143) 评论(0) 推荐(0)
2014年10月27日
postgres 查询数据库所有表名
摘要: select relname as TABLE_NAME ,col_description(c.oid, 0) as COMMENTS from pg_class cwhere relkind = 'r' and relname not like 'pg_%' and relname not li... 阅读全文
posted @ 2014-10-27 14:06 白开水皮皮 阅读(6667) 评论(0) 推荐(0)
2014年10月20日
Android BaseAdapter 数据和显示之间的Adapter 接口
摘要: http://www.cnblogs.com/mandroid/archive/2011/04/05/2005525.html 阅读全文
posted @ 2014-10-20 23:44 白开水皮皮 阅读(178) 评论(0) 推荐(0)
2014年10月17日
javascript new
摘要: 1. 仅function可以使用new2. function使用new时,会拷贝function中this的内容给新对象,并将function的prototype指向新对象(如果该function没有prototype,则指向Object的prototype)注:function本身不是Object... 阅读全文
posted @ 2014-10-17 14:54 白开水皮皮 阅读(139) 评论(0) 推荐(0)
2014年9月18日
android 发短信
摘要: SmsManager smsManager = SmsManager.getDefault(); List divideContents = smsManager.divideMessage("108"); for (String text : divideCo... 阅读全文
posted @ 2014-09-18 18:09 白开水皮皮 阅读(141) 评论(0) 推荐(0)
2014年8月26日
如何判断一个Div是否可视区域,判断div是否可见
摘要: js 1 阅读全文
posted @ 2014-08-26 13:25 白开水皮皮 阅读(19691) 评论(0) 推荐(0)
2014年7月17日
java arrayCopy
摘要: int[] dest = new int[0]; int[] value = {1,2}; if(value != null && value.length>0) { int[] tmp = dest; dest = new int[va... 阅读全文
posted @ 2014-07-17 13:10 白开水皮皮 阅读(205) 评论(0) 推荐(0)
2014年7月7日
Java 正则表达式 向前、向后匹配
摘要: //向后匹配String a = "I paid $90 for 10 oranges, 12 pears and 8 apples. I saved $5 on "; Pattern p = Pattern.compile("(?<=\\$)\\d+"); Matcher m = p.ma... 阅读全文
posted @ 2014-07-07 14:46 白开水皮皮 阅读(8162) 评论(0) 推荐(0)
2014年7月5日
postgres 正则表达式
摘要: PostgreSQL正则表达式基础:OperatorDescriptionExample~Matches regular expression, case sensitive'thomas' ~ '.*thomas.*'~*Matches regular expression, case insen... 阅读全文
posted @ 2014-07-05 15:12 白开水皮皮 阅读(374) 评论(0) 推荐(0)
2014年7月1日
java 分析方法调用过程
摘要: StackTraceElement[] s = new Exception().getStackTrace(); for(int i=0;i<s.length;i++) System.out.println(s[i].getClassName() + s[i].getMethodName())... 阅读全文
posted @ 2014-07-01 13:51 白开水皮皮 阅读(286) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 26 下一页
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3