- 博客(121)
- 资源 (63)
- 收藏
- 关注
原创 如何快速的和合作方进行接口开发
http://www.oldcaptain.cc/articles/2013/11/26/1385427974310.html
2013-11-26 21:58:57 1187
原创 一个由于spring事务引起的bug
http://www.oldcaptain.cc/articles/2013/11/25/1385372657318.html
2013-11-26 09:05:40 873
原创 centos添加swap分区
http://www.oldcaptain.cc/articles/2013/08/08/1375928412814.html
2013-11-19 13:12:10 1006
原创 jquery中的ajax并发请求
http://www.oldcaptain.cc/articles/2013/08/09/1376029283975.html
2013-11-19 13:11:10 2790
原创 cenos6.3下安装svn服务器,以及用户权限配置
http://www.oldcaptain.cc/articles/2013/08/13/1376363276572.html
2013-11-19 13:10:43 955
原创 使用SVN提示“工作副本已经锁定”的解决方案
http://www.oldcaptain.cc/articles/2013/08/14/1376448814106.html
2013-11-19 13:10:19 2064
原创 线程基础-----详细介绍线程状态转换(一)
http://www.oldcaptain.cc/articles/2013/08/15/1376566929843.html
2013-11-19 13:09:50 801
原创 线程基础----如何编写java线程池(二)
http://www.oldcaptain.cc/articles/2013/08/20/1376970534591.html
2013-11-19 13:09:15 956
原创 线程基础----java对象锁(三)
http://www.oldcaptain.cc/articles/2013/08/20/1377003058557.html
2013-11-19 13:08:33 794
原创 线程基础----深入理解volatile变量
http://www.oldcaptain.cc/articles/2013/08/21/1377092100971.html
2013-11-19 13:08:04 710
原创 python的os.popen的用法
http://www.oldcaptain.cc/articles/2013/08/29/1377780374219.html
2013-11-19 13:07:35 1379
原创 邮件服务协议POP3和SMTP的区别
http://www.oldcaptain.cc/articles/2013/08/31/1377937347036.html
2013-11-19 13:07:11 1574
原创 python备份svn服务器文件脚本
http://www.oldcaptain.cc/articles/2013/08/31/1377941441388.html
2013-11-19 13:06:46 994
原创 JSON和JSONP的区别,以及使用方法
http://www.oldcaptain.cc/articles/2013/09/10/1378820707834.html
2013-11-19 13:06:10 1008
原创 如何做一个级联效果的,城市选择插件
http://www.oldcaptain.cc/articles/2013/09/12/1378971921840.html
2013-11-19 13:05:28 877
原创 从一个hibernate配置文件中了解到的东西
http://www.oldcaptain.cc/articles/2013/10/30/1383117343959.html
2013-11-19 13:04:29 744
原创 hibernate对象状态简单介绍
http://www.oldcaptain.cc/articles/2013/10/31/1383207028688.html
2013-11-19 13:03:49 782
原创 快速Oracle 客户端安装
http://www.oldcaptain.cc/articles/2013/11/04/1383547683170.html
2013-11-19 13:03:02 855
原创 String、Calendar、Date间的相互转换(收藏)
http://www.oldcaptain.cc/articles/2013/11/07/1383799305116.html
2013-11-19 13:02:27 787
原创 ireport报表excel取消分页,乱码,冻结行的解决方法
http://www.oldcaptain.cc/articles/2013/11/12/1384264667238.html
2013-11-19 13:01:55 1839
原创 spring整合rmi远程调用
http://www.oldcaptain.cc/articles/2013/11/15/1384505001438.html
2013-11-19 13:01:21 742
原创 navicat 备份 mysql 报错 1548 cannot load mysql.proc
猛戳---> navicat 备份 mysql 报错 1548 cannot load mysql.proc
2013-07-10 13:57:46 1274
原创 关于百度地图 BMap.InfoWindow 只显示最后一条信息解决方法
今天遇到这个问题了。后面再网上搜搜,发现都是你抄我,我转载你的,后来无意看到一篇文章,说是用闭包后来解决了。现在把问题解决方法发出来function baiduMapFunction(divId, hotelArray) { var map = new BMap.Map(divId);// 创建百度地图对象 map.centerAndZoom(new BMap.Point(116.40
2013-03-14 17:34:13 16650 1
转载 java保留两位小数
java保留两位小数问题:方式一:四舍五入 double f = 111231.5585; BigDecimal b = new BigDecimal(f); double f1 = b.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue(); 保留两位小数 ----------
2012-07-12 11:05:52 7093
转载 根据某个日期获得其上月,上季,上周的起止日期
因领导懒惰,页面查询条件中的日期项懒得手工输入,查询条件变作上月,上季,上周,故讨教多方,写了一个工具类,以作日后参考.package util;import java.text.DateFormat;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Calendar;
2012-07-11 11:44:10 2250
转载 java-一个月的第一天和最后一天
/** * * @param year * int 年份 * @param month * int 月份 * * @return int 某年某月的最后一天 */ private int getLastDayOfMonth(int year, int month) { Calendar cal = Calenda
2012-07-11 11:41:18 8609 1
转载 oracle中关于日期的to_char和to_date
TO_CHAR 是把日期或数字转换为字符串TO_DATE 是把字符串转换为数据库中得日期类型转换函数TO_NUMBER 将字符转化为数字 TO_CHAR 使用TO_CHAR函数处理数字 TO_CHAR(number, '格式') TO_CHAR(salary,’$99,999.99’); 使用TO_CHAR函数处理日期 TO_CHAR(date,’格式’); TO_NU
2012-07-11 11:39:44 19686
转载 calendar操作详解
import java.text.DateFormat; import java.text.ParsePosition; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.GregorianCalendar; /**
2012-07-11 11:37:21 1400
在Google使用Borg进行大规模集群的管理.pdf
2018-01-13
动力节点_王勇_JAVA视频教程_DRP分销资源计划_培训日志.pdf
2012-11-05
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人