轉自http://timyang.net/google/open-source/ 很多優秀的開發人員在進入Google之前都是非常活躍的開源貢獻者,但是進入Google之後往往就銷聲匿跡了,包括嘲笑了此現象的Memcached 作者Brad在進入Google之後也無法逃脫此規律。Brad在最近一篇文章Contributing to Open Source
// 目前時間 Date now = new Date(); // 2010上海世博會開幕時間 Date expo2010BeginDate = DateUtils.parseDate("2010-05-01 23:59:59", new String[] { "yyyy-MM-dd HH:mm:ss" }); // 2010上海世博會閉幕時間 Date expo2010EndDate = DateUtils.parseDate("2010-10-31 23:59:59",
commons lang 是 apache commons系列中使用頻率最多的一個包,現在2.5版發布,不再支援Java 1.2,還有一些增強,修複了一些BUG These are the release notes and advice for upgrading Commons-Lang from version 2.4 to version 2.5. INTRODUCTION:This document contains the release notes for the 2.5
Commons Digester 1.8.1是bug fix版本Commons Digester 2.0是全新版本,相容1.8,但是需要jdk5支援,並且不需要Commons Collections包的支援。 :http://apache.mirror.phpchina.com/commons/digester/binaries/ 以下是release note: <!-- Licensed to the Apache Software Foundation (ASF) under
sudo vi /etc/network/interfaces # 一、配置網卡# This file describes the network interfaces available on your system# and how to activate them. For more information, see interfaces(5).# The loopback network interfaceauto loiface lo inet loopback# The
I played with JUnit 4 library this weekend and here is the short introduction to it:@TestMark your test cases with @Test annotations. You don’t need to prefix your test cases with “test”. In addition, your class does not need to extend from