mu_tou_man

导航

 
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页

2017年1月19日

摘要: 查找代码中所有空文件夹(.表示当前目录,可以替换成要查找的目录名,以下同)命令:find . -type d -empty查找空文件夹并清除命令:find . -type d -empty | xargs rm -rf查找空文件夹并添加标识文件(比如需要push到gerrit上时,空目录是不允许的, 阅读全文
posted @ 2017-01-19 18:54 mu_tou_man 阅读(246) 评论(0) 推荐(0) 编辑
 

2016年12月13日

摘要: 文件解析类 阅读全文
posted @ 2016-12-13 23:32 mu_tou_man 阅读(180) 评论(0) 推荐(0) 编辑
 

2016年9月9日

摘要: CountDownLatch(闭锁,有译倒计数,锁寄存): public class CountDownLatchTest { /** * 比如有一个任务A,它要等待其他4个任务执行完毕之后才能执行,此时就可以利用CountDownLatch来实现这种功能了 * @param args */ pub 阅读全文
posted @ 2016-09-09 09:38 mu_tou_man 阅读(126) 评论(0) 推荐(0) 编辑
 

2016年8月12日

摘要: /** * 字节流和字符流的区别, * (1)字符流带有缓冲,必须flush或close后数据才会从缓存中写入磁盘文件。 * 字节流直接写文件。 * (2)字符流在创建流的时候,指定编码,字节流在文件输出的时候指定编码 * jdk中哪些是字符流哪些是字节流,一句话,以Writer、Reader结尾的 阅读全文
posted @ 2016-08-12 09:31 mu_tou_man 阅读(467) 评论(0) 推荐(0) 编辑
 

2016年7月6日

摘要: 新建分支eg: 解决冲突eg: 阅读全文
posted @ 2016-07-06 00:07 mu_tou_man 阅读(207) 评论(0) 推荐(0) 编辑
 

2016年6月27日

摘要: 本文转自(http://www.ibm.com/developerworks/cn/websphere/library/techarticles/1406_tuzy_javacore/1406_tuzy_javacore.html) Javacore 与 WebSphere Commerce 性能问 阅读全文
posted @ 2016-06-27 10:08 mu_tou_man 阅读(28710) 评论(1) 推荐(0) 编辑
 

2016年2月1日

摘要: void resize(int newCapacity) { Entry[] oldTable = table; int oldCapacity = oldTable.length; if (oldCapacity == MAXIMUM_CAPACITY) { threshold = Integer 阅读全文
posted @ 2016-02-01 23:46 mu_tou_man 阅读(323) 评论(0) 推荐(0) 编辑
 

2016年1月31日

摘要: import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; pub 阅读全文
posted @ 2016-01-31 21:18 mu_tou_man 阅读(722) 评论(0) 推荐(0) 编辑
 

2016年1月15日

摘要: 1.3 Basis Path TestingA testing mechanism proposed by McCabe.Aim is to derive a logical complexity measure of a procedural design and use this as a gu... 阅读全文
posted @ 2016-01-15 22:59 mu_tou_man 阅读(473) 评论(0) 推荐(0) 编辑
 

2015年12月31日

摘要: http://blog.itpub.net/27099995/viewspace-1370723/今天又被开发的说服务器时间异常,时差很大。我就纳闷了,上个星期都调整过的。去查看了一下。[root@BIAPPdefault]#date-RFu,11 Dec2014 02:26:08---- 今天是双... 阅读全文
posted @ 2015-12-31 10:28 mu_tou_man 阅读(2829) 评论(0) 推荐(0) 编辑
 
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页