`
wangshu3000
  • 浏览: 131743 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论
文章列表
Oracle时间日期操作 sysdate+(5/24/60/60) 在系统时间基础上延迟5秒 sysdate+5/24/60 在系统时间基础上延迟5分钟 sysdate+5/24 在系统时间基础上延迟5小时 sysdate+5 在系统时间基础上延迟5天 add_months(sysdate,-5) 在系统时间基础上延迟5月 add_months(sysdate,-5*12) 在系统时间基础上延迟5年 上月末的日期:select last_day(add_months(sysdate, -1)) from dual; 本月的最后一秒:select trunc(add_months(sysdat ...
java 代码 public class ReflectionFiledPrintTest {        private String name = "GoGoGo";           private String city = "DoDoDo";           public String getCity() {            return city;        }           public void setCity(String city) {            this.city = city;        } ...
java 代码 做了个刷投票的程序 识别随即码图片的地方用到了BMP图片识别 需要识别出BMP图片里的数字    网站的BMP图片格式比较规则  20 * 45 的大小 每个数字大小是 10 * 8  左侧空 5 像素 右侧 5 像素    研究BMP图片格式发现 BMP主要包括 3 部分 头 颜色表 图像数据区     图像结构如下 类似C++里的结构体    public   class  BMPHeader {    public   byte [] bm =  new   byte ...
RandomAccessFile写中文出现乱码 解决方法:attachFile.write("中文".getBytes("UTF-8"));

开通纪念

写这种开通纪念已经写了N个了 csdn javaresearch msnspace cnblog hibaidu hexun javaeye
Global site tag (gtag.js) - Google Analytics