博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页

2013年5月2日

摘要: #!/bin/bashlogname=/home/test.logfilename=/opt/test.txtcount=0while true; do LASTLINE=`date +"%Y-%m-%d %H:%M:%S"` ls $filename CURTIME=`date +"%Y-%m-%d %H:%M:%S"` Sys_data=`date -d "$CURTIME" +%s` In_data=`date -d "$LASTLINE" +%s` interval=`expr $Sys_data - $I 阅读全文

posted @ 2013-05-02 14:59 钟悍 阅读(648) 评论(0) 推荐(0) 编辑

2013年2月20日

摘要: sntp -r <ntp server ip> // force ntp client synchronized ntp server.cd /usr/share/zoneinfo/Asia //cp Shanghai /etc/localtime // change time zone to CSThwclock --show // show hardware time.hwclock --systohc // change hardware time to system time.ntpq -p ... 阅读全文

posted @ 2013-02-20 15:37 钟悍 阅读(1857) 评论(0) 推荐(0) 编辑

2013年2月2日

摘要: for用于循环 底层以数组为数据结构的数据 例如ArrayList,数组 而iterator 用于循环 底层以链表为数据结构的数据 例如 HashSet, LinkedList 阅读全文

posted @ 2013-02-02 12:12 钟悍 阅读(415) 评论(0) 推荐(0) 编辑

摘要: package com.karl.reference;import static org.junit.Assert.*;import java.lang.ref.Reference;import java.lang.ref.ReferenceQueue;import java.lang.ref.SoftReference;import java.lang.ref.WeakReference;import java.util.HashMap;import java.util.Map;import java.util.WeakHashMap;import org.junit.Test;public 阅读全文

posted @ 2013-02-02 11:02 钟悍 阅读(425) 评论(0) 推荐(0) 编辑

摘要: package com.karl.threadpool;import java.util.ArrayList;import java.util.Collections;import java.util.List;public class MyThreadPool { List tasks = Collections.synchronizedList(new ArrayList()); private static MyThreadPool instance = MyThreadPool.getInstance(); public static MyThreadPool get... 阅读全文

posted @ 2013-02-02 09:56 钟悍 阅读(2673) 评论(2) 推荐(0) 编辑

2013年1月29日

摘要: yy : cory the current line.p : paste.0(number ) : move cursor to the front of the current line.$ : move cursor to the end of the current line.u : undoctrl + r : redoN[ESC] : repeat. eg: 10p : past ... 阅读全文

posted @ 2013-01-29 15:51 钟悍 阅读(216) 评论(0) 推荐(0) 编辑

摘要: package com.karl.multithread;public class Test { public static void main(String[] args) { Printer p = new Printer(); Thread t1 = new NumberPrinter(p); Thread t2 = new LetterPrinter(p); t1.start(); t2.start(); }}class Printer { private int index = 1; pub... 阅读全文

posted @ 2013-01-29 14:30 钟悍 阅读(243) 评论(0) 推荐(0) 编辑

摘要: #!/bin/bashRemoveIP=127.0.0.1RemovePort=80NumberOfWgetPerInterval=3Interval=3FileName=vodExtension=txtPostFixStart=1PostFixEnd=10WgetLimitRate=1024000kfunction main(){ postFix=$PostFixStart ( while : do if [ $postFix -gt `expr $PostFixEnd - $NumberOfWgetPerInterval` ]; then ... 阅读全文

posted @ 2013-01-29 14:19 钟悍 阅读(261) 评论(0) 推荐(0) 编辑

2012年11月1日

摘要: setParameter.sh#!/bin/shif [ $# -eq 3 ]; then sed -i 's/<'"$1"\>'.*</<'"$1"'\>'"$2"'</g' $3else echo errorfi原始xml文件:/home/test.xml<cellphone><android>1000</android><apple>200</apple></cel 阅读全文

posted @ 2012-11-01 16:25 钟悍 阅读(5446) 评论(0) 推荐(2) 编辑

2012年10月12日

摘要: 下面两个例子, 第一个不会出现Exception, 后面的会有ConcurrentModificationException。packagecom.karl.test;importjava.util.List;importjava.util.Vector;publicclassTestVectorConcurrent{Objectobj=newObject();publicstaticList<String>v=newVector<String>();privatestaticvoidinit(){for(inti=1;i<=20;i++){v.add(" 阅读全文

posted @ 2012-10-12 16:31 钟悍 阅读(495) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页