2009年10月24日

               摘要: Read on to see how to add Subversion support to Eclipse and how to perform basic version-control activities from the IDE.  閱讀全文

          posted @ 2010-08-01 15:57 祝嘉 閱讀(376) | 評論 (0)編輯 收藏

               摘要: 通常許多web資源是面向登錄用戶的,如果我們想利用程序自動獲取,則必須要通過程序登錄之後才能實(shí)現(xiàn)。java本身提供的標(biāo)準(zhǔn)庫也可以實(shí)現(xiàn)客戶端的登錄,但是卻不能自動管理服務(wù)器返回的cookie,必須手動管理。這個(gè)是十分麻煩和繁瑣的。幸好有APACHE 的 HTTPCLIENT,我們不必在擔(dān)心如何管理cookie。所以用hc登錄,獲取資源都是十分簡單和方便的。在這裡用一段源碼記錄如何使用hc等錄一個(gè)website,以及如何通過代理登錄和通過代理訪問頁面。  閱讀全文

          posted @ 2010-07-29 10:54 祝嘉 閱讀(448) | 評論 (0)編輯 收藏

               摘要: 使用Apache的HTTPCLIENT獲取網(wǎng)頁的內(nèi)容  閱讀全文

          posted @ 2010-07-28 20:27 祝嘉 閱讀(328) | 評論 (0)編輯 收藏

               摘要: The PatternLayout is by far the most widely used log4j layout. It formats logging events according to a conversion pattern specified by the user. Conversion patterns are composed of literal text and conversion specifiers. Literal text is output as is. Conversion specifiers consist of the % character followed by an optional format modifier and a mandatory conversion character. For example, %-5p [%t]: %m%n is a conversion pattern composed of a priority (a.k.a. level) conversion specifier followed   閱讀全文

          posted @ 2010-07-28 18:50 祝嘉 閱讀(554) | 評論 (0)編輯 收藏

               摘要: export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=on'  閱讀全文

          posted @ 2010-07-11 23:51 祝嘉 閱讀(625) | 評論 (0)編輯 收藏

               摘要: ubuntu下的java中文字體文件名為uming.ttc,而不是通用的uming.ttf,解決方法就是為uming.ttc建一個(gè)軟鏈接。
          $cd /usr/share/fonts/truetype/arphic/
          $sudo ln -s uming.ttc uming.ttf  閱讀全文

          posted @ 2010-07-10 09:35 祝嘉 閱讀(517) | 評論 (0)編輯 收藏

          posted @ 2010-05-15 13:19 祝嘉 閱讀(364) | 評論 (0)編輯 收藏

               摘要: the approach of writing clone method is:
          1.Implements Cloneable interface
          2.Override the clone method
          2.1 Make the clone method to public method
          2.2 Call super.clone() to produce the new object
          2.3 Clone members  閱讀全文

          posted @ 2010-04-21 10:51 祝嘉 閱讀(379) | 評論 (0)編輯 收藏

               摘要: Eclipse在Ubuntu9.10(或其他Linux系統(tǒng))中運(yùn)行時(shí),經(jīng)常會出現(xiàn)鼠標(biāo)點(diǎn)擊按鈕無效需要鍵盤的enter鍵才可以的情況。首先這是一個(gè)bug,出現(xiàn)這種情況的原因是新版本的GTK和eclipse沖突。解決辦法如下:
          在eclipse目錄下建一個(gè)eclipse-patch文件,在該文件中加入如下代碼
          #!/bin/bash
          export GDK_NATIVE_WINDOWS=true
          /你的eclipse目錄/eclipse  閱讀全文

          posted @ 2010-04-18 13:04 祝嘉 閱讀(414) | 評論 (0)編輯 收藏

               摘要: 首先是get方式提交亂碼,修改tomcat的server.xml。在Connector節(jié)點(diǎn)添加URIEncoding="UTF-8"  閱讀全文

          posted @ 2010-03-24 10:55 祝嘉 閱讀(808) | 評論 (0)編輯 收藏

          posted @ 2010-03-19 14:15 祝嘉 閱讀(937) | 評論 (0)編輯 收藏

               摘要: 在一般默認(rèn)的情況下,在linux下安裝netbeans中文版,你會看到好多小方框。
            閱讀全文

          posted @ 2009-12-31 12:21 祝嘉 閱讀(308) | 評論 (0)編輯 收藏

               摘要: 當(dāng)JDK更新安裝路徑改變后,修改NetBeans的默認(rèn)jdk路徑  閱讀全文

          posted @ 2009-12-28 23:52 祝嘉 閱讀(5226) | 評論 (0)編輯 收藏

          posted @ 2009-12-15 12:48 祝嘉 閱讀(105) | 評論 (0)編輯 收藏

               摘要: 所有類型的 Java 應(yīng)用程序一般都需要計(jì)劃重復(fù)執(zhí)行的任務(wù)。企業(yè)應(yīng)用程序需要計(jì)劃每日的日志或者晚間批處理過程。一個(gè) J2SE或者 J2ME 日歷應(yīng)用程序需要根據(jù)用戶的約定計(jì)劃鬧鈴時(shí)間。不過,標(biāo)準(zhǔn)的調(diào)度類 Timer 和 TimerTask 沒有足夠的靈活性,無法支持通常需要的計(jì)劃任務(wù)類型。在本文中,Java 開發(fā)人員 Tom White 向您展示了如何構(gòu)建一個(gè)簡單通用的計(jì)劃框架,以用于執(zhí)行任意復(fù)雜的計(jì)劃任務(wù)。  閱讀全文

          posted @ 2009-12-15 12:14 祝嘉 閱讀(347) | 評論 (0)編輯 收藏

          posted @ 2009-12-14 13:14 祝嘉 閱讀(1077) | 評論 (0)編輯 收藏

          posted @ 2009-11-15 10:18 祝嘉 閱讀(3523) | 評論 (0)編輯 收藏

          posted @ 2009-11-02 23:20 祝嘉 閱讀(1496) | 評論 (1)編輯 收藏

          posted @ 2009-10-24 23:44 祝嘉 閱讀(234) | 評論 (0)編輯 收藏

          主站蜘蛛池模板: 武邑县| 伊金霍洛旗| 和政县| 景洪市| 横峰县| 平罗县| 阿瓦提县| 道孚县| 满洲里市| 荆州市| 安康市| 秦安县| 亚东县| 吴桥县| 安吉县| 呼玛县| 丰台区| 水富县| 麻栗坡县| 隆昌县| 丹阳市| 孟村| 鄯善县| 定边县| 汝南县| 肃南| 清远市| 苍南县| 安顺市| 界首市| 马龙县| 平谷区| 莱西市| 大英县| 北辰区| 杨浦区| 平阴县| 新密市| 获嘉县| 项城市| 盐亭县|