摘要: 预热正则表达式讲解使用方法 和传统的对比 阅读全文
posted @ 2012-12-03 22:04 sfshine 阅读(126) 评论(0) 推荐(0) 编辑
摘要: long timer = info.getTimer(); long day = timer/(24*60*60); timer = timer - day*(24*60*60); long hour = timer/(60*60) ; timer = timer - hour*60*60; long min = timer/(60); timer = timer - min*60; long second = timer % 60;timer 是 一秒为单位的时间差 阅读全文
posted @ 2012-12-03 15:37 sfshine 阅读(239) 评论(0) 推荐(0) 编辑