﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>BlogJava-淡蓝色的轨迹……-文章分类-技术生涯</title><link>http://www.blogjava.net/snoics/category/3766.html</link><description>&lt;SCRIPT language=JavaScript&gt; 
&lt;!--// 
var version = "other" ;
 browserName = navigator.appName;                                       browserVer = parseInt(navigator.appVersion); 

if (browserName == "Netscape" &amp;&amp; browserVer &gt;= 3) 
  version = "n3"; 
else if (browserName == "Netscape" &amp;&amp; browserVer &lt; 3)
  version = "n2"; 
else if (browserName == "Microsoft Internet Explorer" &amp;&amp; browserVer &gt;= 4) 
  version = "e4"; 
else if (browserName == "Microsoft Internet Explorer" &amp;&amp; browserVer &lt; 4) 
  version = "e3"; 
 
function marquee1() { 
	                                                                                 if (version == "e4") 
	                                                                                      { 
          document.write("&lt;marquee behavior=scroll direction=up width=367 height=135 scrollamount=1 scrolldelay=100&gt;") 
	                                                                                        } 
                                                                                                 } 
 
                                                                                         function marquee2() 
                                                                                               { 
	                                                                                 if (version == "e4") 
	                                                                                     { 
		                                                                       document.write("&lt;/marquee&gt;") 
	                                                                                       } 
                                                                                                  } 
 
 //--&gt; 
&lt;/SCRIPT&gt;

&lt;SCRIPT language=JavaScript&gt;marquee1();&lt;/SCRIPT&gt;

&lt;SCRIPT&gt;  
&lt;!--  
                                                                                           var from = 1;  
                                                                                           var to = 4;  
                                                                                            var delay = 55; //闪的速度  
                                                               var glowColor = "#FFCC00";//颜色  
                                                               var i = to;  
                                                                                            var j = 0; 
                                                                                            textPulseDown();  
  
                                                                                             function textPulseUp()  
                                                                                                 {  
                                                                                                   if (!document.all)  
                                                                                                      return  
                                                                                                   if (i &lt; to)  
                                                                                                       {  
                                                                                                           //theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";  
                                                                                                           i++;  
                                                                                                           theTimeout = setTimeout('textPulseUp()',delay);  
                                                                                                           return 0;  
                                                                                                         }  
  
                                                                                                    if (i = to)  
                                                                                                        {  
                                                                                                           theTimeout = setTimeout('textPulseDown()',delay);  
                                                                                                           return 0;  
                                                                                                            }  
  
  
                                                                                                     }  
  
                                                                                                function textPulseDown()  
                                                                                                      {  
                                                                                                         if (!document.all)  
                                                                                                              return  
                                                                                                         if (i &gt; from)  
                                                                                                              {  
                                                                                                                 //theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";  
                                                                                                                 i--;  
                                                                                                                 theTimeout = setTimeout('textPulseDown()',delay);  
                                                                                                                 return 0;  
                                                                                                               }  
  
                                                                                                          if (i = from)  
                                                                                                              {  
                                                                                                                 theTimeout = setTimeout('textPulseUp()',delay);  
                                                                                                                 return 0;  
                                                                                                                }  
                                                                                                            }  
  
                                                                                                 //--&gt;  
                                                                                    &lt;/SCRIPT&gt;

&lt;FONT style="COLOR: white; FILTER: glow(color=#9966FF,strength=5); HEIGHT: 10px; PADDING-BOTTOM: 3px; PADDING-LEFT: 1px; PADDING-RIGHT: 1px; PADDING-TOP: 3px"&gt;
&lt;br&gt;
天很高,云很淡 风很轻,海很蓝&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
牵着手&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;
在浪漫的沙滩上,留下两行清晰的脚印......

&lt;/font&gt;</description><language>zh-cn</language><lastBuildDate>Tue, 27 Feb 2007 22:41:11 GMT</lastBuildDate><pubDate>Tue, 27 Feb 2007 22:41:11 GMT</pubDate><ttl>60</ttl><item><title>java中不是所有的有返回值的方法都一定要有return</title><link>http://www.blogjava.net/snoics/articles/15321.html</link><dc:creator>snoics</dc:creator><author>snoics</author><pubDate>Wed, 12 Oct 2005 05:06:00 GMT</pubDate><guid>http://www.blogjava.net/snoics/articles/15321.html</guid><wfw:comment>http://www.blogjava.net/snoics/comments/15321.html</wfw:comment><comments>http://www.blogjava.net/snoics/articles/15321.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/snoics/comments/commentRss/15321.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/snoics/services/trackbacks/15321.html</trackback:ping><description><![CDATA[<P>package test;</P>
<P>public class TestReturn {</P>
<P>&nbsp;public TestReturn() {<BR>&nbsp;&nbsp;<BR>&nbsp;}<BR>&nbsp;<BR>&nbsp;public String returnString() throws Exception{<BR>&nbsp;&nbsp;throw new Exception();<BR>&nbsp;}<BR>}<BR><BR>在JDK1.4中能编译通过<BR><BR>说明在方法执行完之前创建并抛出了异常，则该函数可以不返回值。</P><img src ="http://www.blogjava.net/snoics/aggbug/15321.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/snoics/" target="_blank">snoics</a> 2005-10-12 13:06 <a href="http://www.blogjava.net/snoics/articles/15321.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>收藏的网站</title><link>http://www.blogjava.net/snoics/articles/15060.html</link><dc:creator>snoics</dc:creator><author>snoics</author><pubDate>Sun, 09 Oct 2005 07:03:00 GMT</pubDate><guid>http://www.blogjava.net/snoics/articles/15060.html</guid><wfw:comment>http://www.blogjava.net/snoics/comments/15060.html</wfw:comment><comments>http://www.blogjava.net/snoics/articles/15060.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/snoics/comments/commentRss/15060.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/snoics/services/trackbacks/15060.html</trackback:ping><description><![CDATA[<DL>
<P>
<DT>
<H3 FOLDED ADD_DATE="1123209666">Download</H3>
<DL>
<P>
<DT><A href="http://bt.tjgame.enorth.com.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">=GameSir= －=飘云领域=－ 游戏动漫联合BitTorrent发布页</A> 
<DT><A href="http://www.piaodown.com/down/index.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1126689418">★飘DOWN精品软件★ —----免费软件，共享软件，软件下载 网址大全 在线音乐---http---www.piaodown.com</A> 
<DT><A href="http://reg.91.com/WReg/Register3.aspx?url=http://down.91.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">91通行证注册</A> 
<DT><A href="http://down.91.com/index.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1124254100">91下载-就要当-软件,图库,影视,动画,游戏,源码,教程,数码,驱动,素材</A> 
<DT><A href="http://bt.acnow.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">AcNow-BT发布页-bt下载及免费电影bt下载</A> 
<DT><A href="http://bt3.btchina.net/cnxp/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">BitTorrent @ China - 影视帝国--BT--发布区</A> 
<DT><A href="http://bt2.btchina.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1128819906">BT @ China 联盟 - 发布总索引</A> 
<DT><A href="http://bbs.dovs.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">DOVS.COM - powered by phpwind.net</A> 
<DT><A href="http://www.ii123.com/index.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">ii123软件下载 - [www.ii123.com]</A> 
<DT><A href="http://www.suprnova.org/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">SuprNova.org</A> 
<DT><A href="http://download.ayxz.com/index.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1124254106">俺要下载 www.ayxz.com (原：飞牌精品软件) 正版软件 破解软件 注册注册 下载 源码下载 游戏下载 外挂</A> 
<DT><A href="http://www.chinakids.net.cn/teens/cartoon/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">动漫特区</A> 
<DT><A href="http://www.onlinedown.net/index.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123660484">华军软件园——共享软件发布-下载-学习-研究-交流之园(推荐用1024768)</A> 
<DT><A href="http://bt.ktxp.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">极影BT发布索引 --- [动漫,漫画,影视,连续剧,下载]</A> 
<DT><A href="http://jinshouzhi.org/jszdown/index.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">金手指下载站—[www.jinshouzhi.org]-金手指的汉语拼音（jinshouzhi）</A> 
<DT><A href="http://www.mydrivers.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209676">驱动之家MyDrivers--您身边的硬件专家</A> 
<DT><A href="http://bbs.fjpc.net/cgi-bin/forums.cgi?forum=2" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">软件精品载</A> 
<DT><A href="http://www.shooter.com.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">射手网 - Shooter.com.cn - 与别人分享，别人与你分享</A> 
<DT><A href="http://www.10du.net/index.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">十度注册破解搜索引擎 注册机，注册码，破解，软件，我们给你最快的速度。</A> 
<DT><A href="http://bt.greedland.net/index.php?" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1126767418">贪婪大陆-BT发布区</A> 
<DT><A href="http://www.skycn.com/index.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123660472">天空软件站</A> 
<DT><A href="http://www.tiansha.net/down/index.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">天煞网(tiansha.net)中国最大的正版软件下载基地</A> 
<DT><A href="http://www.38w.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1124254044">完美下载[www.38w.net] 软件 单曲 音乐 广播剧 MTV 电影 FLASH 游戏 BT 漫画 书库</A> 
<DT><A href="http://bt.ydy.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">伊甸园BT&amp;字幕下载区 BitTorrent下载</A> 
<DT><A href="http://bbs.winzheng.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">赢政天下[WINZHENG.COM] -=赢政天下论坛</A> 
<DT><A href="http://soft.winzheng.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">赢政天下[WINZHENG.COM] → 首页</A> 
<DT><A href="http://bbs.btpig.com/forumdisplay.php?fid=83&amp;page=1&amp;sid=BHgg2De4" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">猪猪乐园 - BT超级游戏 - font color=greenBT游戏下载区 - 关闭注册，游客可以下载附件</A> 
<DT><A href="http://lib.verycd.com/" ADD_DATE="1128819855" LAST_VISIT="1128787200" LAST_MODIFIED="1128822848">VeryCD</A> </DT></DL>
<P></P>
<DT>
<H3 FOLDED ADD_DATE="1123209666">EBook</H3>
<DL>
<P>
<DT><A href="http://www.cmfu.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">-. 起点中文网 原创文学门户网站 .-</A> 
<DT><A href="http://www.cmfu.com/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">. 起点中文网原创文学书库 .</A> 
<DT><A href="http://www.epubcn.com/downloadcenter.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">..ｅ类出版物..下载中心..</A> 
<DT><A href="http://lib.blcu.edu.cn/per2/zqhome/index-khzt.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">《网络庄园--科幻侦探》</A> 
<DT><A href="http://www.readnovel.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">《小说阅读网》- 小说 -言情小说-武侠小说-玄幻科幻</A> 
<DT><A href="http://www.pcbookcn.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">∷中华电脑书库--首页∷</A> 
<DT><A href="http://www.wansong.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1124413180">※万壑松风※玄幻书库主页</A> 
<DT><A href="http://www.eshunet.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">ｅ书时空——电子图书下载中心</A> 
<DT><A href="http://www.ebook007.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123462064">北极星书库-电子书免费下载公益站点-ebooks center-www.ebook007.com-电子书库首页-free ebook</A> 
<DT><A href="http://ebook.hzgwbn.com/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">长城宽带E书下载站</A> 
<DT><A href="http://www.novel-world.com/login.jsp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">登录小说世界</A> 
<DT><A href="http://www.dqcx.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">断桥残雪</A> 
<DT><A href="http://www.grassy.org/grass.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">欢迎来到绿土地！</A> 
<DT><A href="http://www.hjsm.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1126577336">幻剑书盟_小说_文学_中国原创小说门户</A> 
<DT><A href="http://www.wellink.net/book/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">极品书库</A> 
<DT><A href="http://www.jjwxc.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">晋江文学城</A> 
<DT><A href="http://www.jjwxc.net/index.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">晋江原创网[首页]</A> 
<DT><A href="http://www.dragonsky.net/readbook/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">龙的天空---书库首页</A> 
<DT><A href="http://www.mojie.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">魔界－奇幻文学网</A> 
<DT><A href="http://www.3320.net/blib/index.php" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">爬爬书库—3320.net</A> 
<DT><A href="http://www.rongshuxia.com/rss/ld_index.rs" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">榕树下－生活·感受·随想</A> 
<DT><A href="http://www.5ibooks.com/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">书灵爱书网大量免费精品小说阅读下载</A> 
<DT><A href="http://www.tewx.com/common/main.php" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">天逸文学 - 首页</A> 
<DT><A href="http://books.skyhits.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">万卷书屋 在线书库</A> 
<DT><A href="http://www.52ebook.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1128818956">我爱EBOOK--大型免费电子图书下载网站</A> 
<DT><A href="http://www.xiaoshuo.net/index1.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">小说网</A> 
<DT><A href="http://sh3.17cn.com/body/9.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">新动网 书籍介绍 类下载列表</A> 
<DT><A href="http://www.culture.zju.edu.cn/new/phpcode/mainserver/downmusic.php?cat_id=1&amp;offset=7#" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">浙江大学文化素质网</A> 
<DT><A href="http://sunzhushou.html.533.net/?noad" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">值班员之家E书小站</A> 
<DT><A href="http://www.booksir.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">中国书生 书生 书生网 读书 学习 免费 小说 诗歌 爱情 在线</A> 
<DT><A href="http://fs8.zj01.com/ebook.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">重金属-科幻电子书</A> 
<DT><A href="http://zhulang.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">逐浪文学-免费文学小说-言情小说-军事历史-武侠玄幻小说</A> 
<DT><A href="http://bbs.qhzw.com/?u=534" ADD_DATE="1124155334" LAST_VISIT="1128787200" LAST_MODIFIED="1124443170">奇幻中文 最新网络连载小说-奇幻-玄幻-武侠-都市-言情-科幻-网游-纵意花丛-善良的死神-校园篮球风云-狂神-猛龙过江..</A> 
<DT><A href="http://bbs.kongbu.net/" ADD_DATE="1125364085" LAST_VISIT="1128787200" LAST_MODIFIED="1125364086">恐怖文学在线 第七夜社区-论坛首页</A> 
<DT><A href="http://bbs.rbook.net/index.asp?boardid=115" ADD_DATE="1125364091" LAST_VISIT="1128787200" LAST_MODIFIED="1125635094">读书中文网-『 玄幻情侠专栏 』-帖子列表</A> 
<DT><A href="http://bbs.rbook.net/" ADD_DATE="1125450251" LAST_VISIT="1128787200" LAST_MODIFIED="1128820974">读书中文网-论坛首页</A> 
<DT><A href="http://www.oursci.org/lib.htm" ADD_DATE="1126864500" LAST_VISIT="1128787200" LAST_MODIFIED="1126864502">三思藏书架·OurSci三思科学网站</A> </DT></DL>
<P></P>
<DT>
<H3 FOLDED ADD_DATE="1123209666">Forum</H3>
<DL>
<P>
<DT><A href="http://www.stgclub.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">[STGCLUB.com]</A> 
<DT><A href="http://www.code-sale.com/main.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">『逸马信息』 - 逸马主页</A> 
<DT><A href="http://www.gamerhome.net/main/index.php?act=Zahui" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">【大杂烩】</A> 
<DT><A href="http://www.squarecn.com/ff/ffsky/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">【天幻社区】</A> 
<DT><A href="http://www.smth.org/index.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">BBS水木清华站</A> 
<DT><A href="http://alumni.chinaren.com/class/class_index.jsp?classuuid=2815032345969258384" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">ChinaRen校友录 福建工程学院计算机001班</A> 
<DT><A href="http://www.flashempire.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Flashempire 闪客帝国</A> 
<DT><A href="http://bbs.gznat.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Gznat--论坛首页</A> 
<DT><A href="http://www.jujumao.com/cgi-bin/leoboard.cgi" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">JUJU猫之家的论坛</A> 
<DT><A href="http://www.k666.com/bbs/NowBoard.aspx" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">k666软件园 k666休闲论坛</A> 
<DT><A href="http://bbs.kebclub.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">KEB俱乐部</A> 
<DT><A href="http://www.mengair.com/bbs/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Meng Air交流論壇 - powered by Discuz!</A> 
<DT><A href="http://music.poco.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Poco 全碟下载 免费音乐下载 免费下载音乐 免费mp3下载 免费下载mp3 免费写真 流行音乐 影视原声 明星</A> 
<DT><A href="http://bbs.qq.com/cgi-bin/user/user_enter_bbs?g=f&amp;url=/cgi-bin/bbs/bbs_main%3Fgroupid%3D122:10328" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">QQ论坛</A> 
<DT><A href="http://radio.qq.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">QQ新声代</A> 
<DT><A href="http://bbs.tom.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Tom论坛</A> 
<DT><A href="http://dpshow.163.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">导购频道——数码摄影专区</A> 
<DT><A href="http://forum.book.sina.com.cn/cgi-bin/view.cgi?gid=44&amp;fid=1184&amp;thread=22553&amp;date=20040701&amp;page=14" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">读书论坛_新浪网</A> 
<DT><A href="http://our.163.com/index.jsp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">个人论坛</A> 
<DT><A href="http://bbs.juntong.com.cn/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">骏通服务论坛--论坛首页</A> 
<DT><A href="http://www.maiweb.net/cgi-bin/leobbs.cgi" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">麦网超酷社区</A> 
<DT><A href="http://www.manfen.net/forum/index.php?s=" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">满分论坛</A> 
<DT><A href="http://www.mop.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1128066588">猫扑</A> 
<DT><A href="http://www.minilyrics.com/bbs/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">迷你歌词论坛-论坛首页</A> 
<DT><A href="http://www.rongshuxia.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">榕树下-首页</A> 
<DT><A href="http://bbs.soff.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">珊瑚虫论坛 - powered by Discuz!</A> 
<DT><A href="http://www.famoustone.com/stonefad/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">时尚风向标</A> 
<DT><A href="http://www.126.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">网易@126.com免费邮箱 -- www.126.com中国最大的免费邮箱</A> 
<DT><A href="http://our3.163.com/clubmain.jsp?clubid=49519" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">网易个人论坛</A> 
<DT><A href="http://our3.163.com/clubmain.jsp?clubid=47063" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">网易个人论坛——梅雨季小镇</A> 
<DT><A href="http://our3.163.com/listArticles.jsp?clubid=257028&amp;parentdirid=0&amp;pagenum=1" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">网易个人论坛—谁和我一起看你</A> 
<DT><A href="http://our3.163.com/clubmain.jsp?clubid=237160" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">网易个人论坛——星星</A> 
<DT><A href="http://www.sofish.net/bbs/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">微微论坛--论坛首页</A> 
<DT><A href="http://bbs.infoxa.com/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">西安信息资源网-论坛首页</A> 
<DT><A href="http://bbs.car8848.com/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">星星社区-论坛首页</A> 
<DT><A href="http://www.1001flower.net/product.php?action=use&amp;typeID=59&amp;language=gb2313&amp;pageID=1" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">一千零一夜</A> 
<DT><A href="http://www.seasky.cn/app/data/tribe.club.club?club=Z3" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">逸海天使</A> 
<DT><A href="http://www.yyclub.org/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">银英俱乐部</A> 
<DT><A href="http://www.yhcmovie.com/index.php" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">萤火虫论坛免费电影电视剧DVDrip综艺节目mp3mtv音乐图片FLASH软件游戏动画漫画小说 FTP BT 下载</A> 
<DT><A href="http://www.gamerhome.net/main/index.php" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">游戏人的家论坛</A> </DT></DL>
<P></P>
<DT>
<H3 FOLDED ADD_DATE="1123209666">Game</H3>
<DL>
<P>
<DT><A href="http://www.ps21cn.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">..PS国度..http--www.ps21cn.com</A> 
<DT><A href="http://www.skyhu.com/gamenews.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">.SkyHu.com_火狐游戏网_打造一流门户_尽显游戏精彩</A> 
<DT><A href="http://www.chinaemu.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1126579776">：：： 中华模拟器联盟 ：：：</A> 
<DT><A href="http://www.52games.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">52GAMES.COM</A> 
<DT><A href="http://www.chinaemu.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1126659936">ChinaEmu New</A> 
<DT><A href="http://www.emumax.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">EMU MAX</A> 
<DT><A href="http://www.emusun.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1126659836">EmuSun 模拟器专业站 - We make things better...</A> 
<DT><A href="http://www3.emu-zone.org/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Emu-Zone [ 电玩、模拟、网游资讯,一切尽在EZ ]</A> 
<DT><A href="http://www.squarecn.com/ff/main.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1128824434">FFSKY-天幻网-SQUARE-ENIX游戏专题站（www.SquareCN.com）</A> 
<DT><A href="http://www.gamecool.com.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">GameCool－电玩迷的宝库</A> 
<DT><A href="http://www.stage1st.com/bbs/index.php?s=aaef05f47ba1d818f5391fd5004e0c1a" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">STAGE1 - powered by Stage 1</A> 
<DT><A href="http://www.game00.com/downloads/manage/game/1072188516.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">www.9you.com -- 久游网</A> 
<DT><A href="http://soon.dianwan.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1126659970">电玩中间站2004全力打造电子游戏（TV-GAME）专业站</A> 
<DT><A href="http://cfgm.myetang.com/flash/index.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">风色幻想游戏天堂</A> 
<DT><A href="http://www.skyhu.com/tvgame.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">火狐游戏网-电视游戏</A> 
<DT><A href="http://marsgame.com/new/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">火星电玩资讯网 － M2K4Exploring Mars Game</A> 
<DT><A href="http://bbs.marsgame.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">火星论坛</A> 
<DT><A href="http://www.ourgame.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">联众世界</A> 
<DT><A href="http://www.emucn.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">模拟天下</A> 
<DT><A href="http://www.cis.com.cn/emu365/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">模拟游戏365</A> 
<DT><A href="http://www.1dgame.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">你的游戏【www.1dgame.com】</A> 
<DT><A href="http://www.parsongame.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">派森电玩</A> 
<DT><A href="http://www.bnb.com.cn/newbnb/bnb02/home/index.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">泡　泡　堂</A> 
<DT><A href="http://ppfans.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">泡泡Fans泡泡堂主题站 - BnB is my life</A> 
<DT><A href="http://bnb.poptang.com/newbnb/bnb04/home/index1.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">泡泡堂金秋加强版</A> 
<DT><A href="http://219.148.128.13/shobbs/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">忍者秀BBS--论坛首页</A> 
<DT><A href="http://www.shanda.com.cn/homepage/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">上海盛大网络发展有限公司</A> 
<DT><A href="http://www.senmee.com/?sid=7qQWzOCE" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">神秘园 - powered by Discuz!</A> 
<DT><A href="http://romhacker.chinaemu.cn/ipb/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">游戏汉化联盟</A> 
<DT><A href="http://www1.gameforever.com/rom/rom/neorage/index.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">游戏永远之模拟器版</A> 
<DT><A href="http://www.gameking.com.cn/gk/default.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">游戏之王--GameKing.com.cn</A> 
<DT><A href="http://www.gameking.com.cn/default.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">游戏之王--www.GameKing.com.cn</A> 
<DT><A href="http://patch.ali213.net/default.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">游侠补丁网</A> 
<DT><A href="http://www.chinagba.com/down/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">掌机地带下载系统 - 2.0 RC 4</A> 
<DT><A href="http://www.gbgba.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">掌机之王-gb gbp gbc gba ws wsc ngp nds psp</A> 
<DT><A href="http://www.emu.com.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1126659960">中华模拟网首页</A> 
<DT><A href="http://www.ggame8.com/sort/146_1.htm" ADD_DATE="1126659325" LAST_VISIT="1128787200" LAST_MODIFIED="1126659326">模拟游戏 --- 游戏下载中心-光之游戏</A> 
<DT><A href="http://sw:10001/" ADD_DATE="1126767995" LAST_VISIT="1128787200" LAST_MODIFIED="1127088632">GongLve</A> </DT></DL>
<P></P>
<DT>
<H3 FOLDED ADD_DATE="1123209666">MSN Message</H3>
<DL>
<P>
<DT><A href="file:///D:/My%20Documents/我接收到的文件/snoics382241374/历史记录/xiandaliu2086531734.xml" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Message Log for LDY</A> 
<DT><A href="file:///D:/My%20Documents/我接收到的文件/snoics382241374/历史记录/liuxiaokun_801075943743.xml" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Message Log for LXK</A> </DT></DL>
<P></P>
<DT>
<H3 FOLDED ADD_DATE="1123209666">Music</H3>
<DL>
<P>
<DT><A href="http://www.no1mp3.net/gb/default.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">..No1mp3.net專業mp3网站----你們想要的，就是我們想做的!!</A> 
<DT><A href="http://www.91f.org/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">※91F音乐网 -- 爱上音乐，爱上91F -- 音乐视听第一站 -- 请把本站网址告诉您的朋友们</A> 
<DT><A href="http://list.91f.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">※91F音乐网---list.91f.net---音乐视听第一站 --- 请把本站网址告诉您的朋友们</A> 
<DT><A href="http://www.91f.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">91f 宽频娱乐</A> 
<DT><A href="http://www.9sky.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">9sky.com 九天音乐网</A> 
<DT><A href="http://www.midifan.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">http--www.midifan.com-</A> 
<DT><A href="http://www.pocosite.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Welcome to Poco</A> 
<DT><A href="http://sdjone.591f.net/login.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">艾子哥论坛-填写登录信息</A> 
<DT><A href="http://www.51lrc.com/51lrc_Purple/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">歌词新概念，互动新感觉——带你进入动感LRC歌词世界</A> 
<DT><A href="http://www.9sky.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">九天音乐</A> 
<DT><A href="http://mp3.9i0.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">免费MP3下载,免费音乐下载,港台男歌手,港女男歌手,歌手排行榜</A> 
<DT><A href="http://stsky.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">视听天空首页 ★可听,可看,最新最全的音乐地带!提供完全免费的音乐★</A> 
<DT><A href="http://www.midifan.com/midi/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">网上经典MIDI</A> 
<DT><A href="http://www.hao123.com/music.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">网址之家-----音乐MP3</A> 
<DT><A href="http://www.soonyi.com/New/S15.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">迅宜下载 - 最新更新 天籁之音</A> 
<DT><A href="http://music.36g.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">扬州视窗--水晶音乐网</A> </DT></DL>
<P></P>
<DT>
<H3 FOLDED ADD_DATE="1123209666">Read</H3>
<DL>
<P>
<DT><A href="http://dev.csdn.net/articlelist.aspx?c=6" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">CSDN技术中心 文档列表</A> </DT></DL>
<P></P>
<DT>
<H3 FOLDED ADD_DATE="1123209666">Resource</H3>
<DL>
<P>
<DT><A href="http://www.codestudy.net/default.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">※中国程序员联盟-----为你提供最全最多最好的图书,源代码,软件下载服务!※</A> 
<DT><A href="http://www.xmlspy.com/default.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">ALTOVA - XML Development, Data Mapping, and Content Authoring Tools</A> 
<DT><A href="http://commerce.bea.com/index.jsp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">BEA Downloads</A> 
<DT><A href="http://www.vchelp.net/cndevforum/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">CN Dev Forum 首页</A> 
<DT><A href="http://www.coffee-bytes.com/servlet/PlatformSupport" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Coffee-Bytes Platform Support</A> 
<DT><A href="http://www.csdn.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">CSDN.NET--中国最大的开发者网络，为开发人员和相关企业提供全面的信息服务和技术服务</A> 
<DT><A href="http://net.nowok.net/Web/WebSite2698.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">DELPHI盒子首页</A> 
<DT><A href="http://www-900.cn.ibm.com/developerWorks/cn/java/index.shtml" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">developerWorks Java 专区</A> 
<DT><A href="http://www-106.ibm.com/developerworks/ondemand/migrate/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">developerWorks Migration station</A> 
<DT><A href="http://java.sun.com/j2se/1.5.0/download.jsp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1128055924">Download Java 2 Platform, Standard Edition 5.0</A> 
<DT><A href="http://java.sun.com/j2se/1.4.2/download.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Download Java 2 Platform, Standard Edition, v 1.4.2 (J2SE)</A> 
<DT><A href="http://www.eclipse.org/webtools/initial-contribution/IBM/Getting%20Started.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Eclipse Getting Started.html</A> 
<DT><A href="http://www.eclipse.org/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1127695756">Eclipse.org Main Page</A> 
<DT><A href="http://www.ibm.com/cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">IBM 中国</A> 
<DT><A href="http://tech.ccidnet.com/pub/column/c1078.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">JAVA - 技术天地 - 赛迪网</A> 
<DT><A href="http://www.java.com.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Java.com.cn</A> 
<DT><A href="http://www.jcreator.com/download.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">JCreator — Java IDE</A> 
<DT><A href="ftp://junge.c2008.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">junge.c2008.com</A> 
<DT><A href="http://www.jdon.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">J道Java和J2EE解决之道</A> 
<DT><A href="http://wwws.sun.com/software/learnabout/java/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Learn About - Java</A> 
<DT><A href="http://www.matrix.org.cn/subjects/Wiki.jsp?page=EclipsePlugins" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Matrix Subjects - Java FAQ - Struts Hibernate Eclipse Spring JSF Velocity JDO Tapestry - Eclips</A> 
<DT><A href="http://msdn.microsoft.com/default.aspx" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">MSDN Home Page</A> 
<DT><A href="http://www.netyi.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">netYi专业电脑电子书库</A> 
<DT><A href="http://newsletter.ccidnet.com/new/history/history_detail.php?recid=5321&amp;type=html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">New Document</A> 
<DT><A href="http://java.sun.com/j2ee/1.4/docs/api/index.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Overview (Java 2 Platform Ent. Ed. v1.4)</A> 
<DT><A href="http://java.sun.com/j2se/1.4.2/docs/api/index.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Overview (Java 2 Platform SE v1.4.2)</A> 
<DT><A href="http://www.sentom.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">SenTom</A> 
<DT><A href="http://www.sun.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Sun Microsystems</A> 
<DT><A href="http://cn.sun.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Sun Microsystems CN</A> 
<DT><A href="http://gceclub.sun.com.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">SUN技术社区</A> 
<DT><A href="http://java.sun.com/j2ee/1.4/docs/tutorial/doc/index.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">The J2EE(TM) 1.4 Tutorial</A> 
<DT><A href="http://jakarta.apache.org/site/binindex.cgi" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">The Jakarta Site - Binary Downloads</A> 
<DT><A href="http://www.linux.org/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">The Linux Home Page at Linux Online</A> 
<DT><A href="http://www.java.com/zh/index.jsp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">The Source for Java Technology</A> 
<DT><A href="http://java.sun.com/webservices/docs/1.0/tutorial/doc/IntroXML.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Understanding XML</A> 
<DT><A href="http://www.apache.org/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Welcome! - The Apache Software Foundation</A> 
<DT><A href="http://www.zdnet.com.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">ZDNet China Home Page</A> 
<DT><A href="http://www.zdnet.com.cn/developer/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">ZDNet China 技术与开发</A> 
<DT><A href="http://cstc.net.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">计算机科学技术网</A> 
<DT><A href="http://www0.ccidnet.com/tech/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">技术天地</A> 
<DT><A href="http://www.cccen.com/sou/html/tbtk.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">谦龙素材</A> 
<DT><A href="http://www.ccidnet.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">赛迪网</A> 
<DT><A href="http://vip.ddvip.net/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">视频教程下载-IT认证视频、MCSE认证、自学视频</A> 
<DT><A href="http://www.havecode.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">有源码欢迎您光临! ==-- 首页</A> 
<DT><A href="http://www.codestudy.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">中国程序员联盟 - CODESTUDY.NET</A> 
<DT><A href="http://www.playicq.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">中国盟动力-免费Delphi,VC,VB,.Net,Java,PowerBuilder,PHP,ASP,PERL源码下载基地</A> 
<DT><A href="http://www.jboss.org/products/jbosside" ADD_DATE="1123723449" LAST_VISIT="1128787200" LAST_MODIFIED="1125302724">JBoss.com - JBoss Eclipse IDE</A> 
<DT><A href="http://www.51ea.com/" ADD_DATE="1124261808" LAST_VISIT="1128787200" LAST_MODIFIED="1124261810">培训学校招生-英语培训,电脑培训,企业管理培训,职业资格认证考试...</A> 
<DT><A href="http://www.javaalmanac.com/" ADD_DATE="1127098789" LAST_VISIT="1128787200" LAST_MODIFIED="1127098790">Java Examples from The Java Developers Almanac 1.4</A> 
<DT><A href="http://www.huihoo.com/index.html" ADD_DATE="1128733455" LAST_VISIT="1128787200" LAST_MODIFIED="1128733456">Huihoo - Free and Open Community - 自由、开放的社区 - Middleware,J2EE,Application Server,Portal,Business Integration,Infrastructure Software,Weblogic,WebSphere,Oracle,JOnAS,JBoss...</A> </DT></DL>
<P></P>
<DT>
<H3 FOLDED ADD_DATE="1123209666">Tutorial</H3>
<DL>
<P>
<DT><A href="http://www.5ien.com/Classhtml/study.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">5ien.com英语学习网</A> 
<DT><A href="http://www.e800.com.cn/index.jsp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">e800_take IT easy</A> 
<DT><A href="http://www.enet.com.cn/home/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">eNet硅谷动力</A> 
<DT><A href="http://www.englishtown.com/master/hp/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Englishtown</A> 
<DT><A href="http://cmarketing.com.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">成功营销 Successful Marketing</A> 
<DT><A href="http://www.marketingbetter.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">电子商务解决方案，网络营销及网络营销策略，启洋科技</A> 
<DT><A href="http://info.news.hc360.com/html/qygl.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">企业管理-hc360慧聪网</A> 
<DT><A href="http://www.qyglw.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">企业管理网</A> 
<DT><A href="http://www.518info.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">商业流通资讯(所有免费--超市、百货、采购、物流、网址大全、自助建站、供求信息、信息引擎.)</A> 
<DT><A href="http://www.51test.net/English.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">无忧考网英语资料专区 英语口语 英语听力 英语学习 英语学习资料 英语听力资料 英语听力下载 英语口语</A> 
<DT><A href="http://www.englishbase.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">英语精品资料网</A> 
<DT><A href="http://www.cycnet.com/englishcorner/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">英语学习网站 英语角 Welcome to the English Corner at CYCNET. Improve your English, improve your</A> 
<DT><A href="http://www.jakj.com.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">中国企业管理世界网</A> 
<DT><A href="http://www.westudyenglish.com/bbs/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">中国英语学习论坛-论坛首页</A> 
<DT><A href="http://www.westudyenglish.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">中国英语学习网 (http--www.westudyenglish.com)</A> </DT></DL>
<P></P>
<DT><A href="http://www.microsoft.com/isapi/redir.dll?prd=ie&amp;pver=6&amp;ar=IStart" ADD_DATE="1123148628" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">MSN.com</A> 
<DT><A href="http://www.microsoft.com/isapi/redir.dll?prd=windows&amp;sbp=mediaplayer&amp;plcid=&amp;pver=6.1&amp;os=&amp;over=&amp;olcid=&amp;clcid=&amp;ar=Media&amp;sba=RadioBar&amp;o1=&amp;o2=&amp;o3=" ADD_DATE="1123148628" LAST_VISIT="1128787200" LAST_MODIFIED="1123148630">电台指南</A> 
<DT><A href="http://blog.csdn.net/hongbo781202/category/10992.aspx" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">【HongSoft @ WorkFlow】 - 工作流shark</A> 
<DT><A href="http://down.91.com/index.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">91下载-就要当-软件,图库,影视,动画,游戏,源码,教程,数码,驱动,素材</A> 
<DT><A href="http://msdn.microsoft.com/library/chs/default.asp?url=/library/CHS/dntaloc/html/csharpmsmq.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123821986">C#：消息队列服务应用程序</A> 
<DT><A href="http://news.chinabyte.com/20011217/210052.shtml" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">c#消息服务器</A> 
<DT><A href="http://passport.csdn.net/member/userlogin.aspx?from=http://community.csdn.net/expert/forum.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1127871578">CSDN 用户登录</A> 
<DT><A href="http://www.csdn.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1127954592">CSDN.NET - 中国最大的开发者网络，为开发人员和相关企业提供全面的信息服务和技术服务</A> 
<DT><A href="http://www.eclipse.org/downloads/index.php" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Eclipse Downloads</A> 
<DT><A href="http://shark.objectweb.org/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Enhydra Shark - Home Page</A> 
<DT><A href="http://www.google.com/intl/zh-CN/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1128820998">Google</A> 
<DT><A href="http://login.passport.net/uilogin.srf?id=2" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">HotMail</A> 
<DT><A href="http://apache.linuxforum.net/dist/jakarta/struts/binaries/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Index of -dist-jakarta-struts-binaries</A> 
<DT><A href="http://218.5.2.35/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1128818782">itask</A> 
<DT><A href="http://www.itpub.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">ITPUB论坛 - powered by itpub.net</A> 
<DT><A href="http://www.javafan.net/index.jsp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1128743016">Java爱好者 免费Java教程下载,Java电子书籍,Java技术文章</A> 
<DT><A href="http://blog.csdn.net/flyffa/archive/2005/03/16/321483.aspx" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123821990">js的对象继承 - flyffa的专栏</A> 
<DT><A href="http://www.microsoft.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Microsoft Corporation</A> 
<DT><A href="http://msnbc.msn.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123818262">MSNBC - MSNBC Front Page</A> 
<DT><A href="http://www.mylaputa.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Mylaputa.Com 天空之城 - 桌面壁纸</A> 
<DT><A href="http://www.oracle.com/index.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Oracle Corporation</A> 
<DT><A href="http://www.oracle.com/global/cn/index.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Oracle 公司</A> 
<DT><A href="http://www.oreilly.com.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123834348">O'Reilly 北京 - www.oreilly.com.cn</A> 
<DT><A href="http://www.qq.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">QQ.COM</A> 
<DT><A href="http://192.168.0.1/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1128818854">rj-inweb v4.0</A> 
<DT><A href="http://txt.mop.com/static/rss/RSS.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">RSS订阅页面</A> 
<DT><A href="http://211.95.124.238:22/cgi-bin/forums.cgi?forum=24" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Shark 技术研究</A> 
<DT><A href="http://www.matrix.org.cn/blog/skyhit/archives/000424.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Skyhit's Learning Road- 玩玩shark，看看它是怎么工作的？</A> 
<DT><A href="http://www.sogua.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">SoGua.com 全球娱乐门户引擎！</A> 
<DT><A href="http://www.stedy.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Stedy Software and Systems</A> 
<DT><A href="http://www-900.cn.ibm.com/developerWorks/cn/java/j-strutscol/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Struts专题</A> 
<DT><A href="http://www.tgtsoft.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">TGT Soft LLC Home</A> 
<DT><A href="http://www.wgqqh.com/shhgs/tij.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1126775804">Thinking in Java第三版中文版</A> 
<DT><A href="http://tom.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">TOM.COM</A> 
<DT><A href="http://www.msn.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Welcome to MSN.com</A> 
<DT><A href="http://msdn.microsoft.com/library/chs/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">Welcome to the MSDN Library</A> 
<DT><A href="http://www.baidu.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">百度——全球最大中文搜索引擎</A> 
<DT><A href="http://sw/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">办公自动化系统</A> 
<DT><A href="http://www.cnblogs.com/mack" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">博客园-MSPlus WebControls For ASP.NET. （服务器端控件）</A> 
<DT><A href="http://www.fjgwbn.net.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">长城宽带网络服务有限公司福州分公司</A> 
<DT><A href="http://sw:8080/xp_root/static/logon/logon.jsp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">登录xp</A> 
<DT><A href="http://www.pchome.net/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">电脑之家 - 科技引领生活！-PChome</A> 
<DT><A href="http://m-zone.fmcc.com.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">动感地带 --- 福建移动通信有限责任公司</A> 
<DT><A href="http://www.knowsky.com/mobile.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">短信平台,短信开发,移动短信_jsp,asp,sql,php,mysql,server,apache,iis,tomcat,oracle,java,网页制作,LINUX,NT</A> 
<DT><A href="http://edusub.hanstyle.org:2005/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">汉风中文字幕库 - 首页</A> 
<DT><A href="http://www.51chengwang.com/index.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">红魔坊--论坛首页</A> 
<DT><A href="http://www.iswoo.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">-欢迎来到中国最优秀的知识积累网站!</A> 
<DT><A href="http://www.msn.com.cn/Default.asp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">欢迎莅临 MSN 中国</A> 
<DT><A href="http://mail.rongji.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">欢迎榕基电子邮件系统</A> 
<DT><A href="http://www.huihoo.com/column/chedong/cms.html" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">利用Squid反相代理缓存实现网站内容静态发布</A> 
<DT><A href="http://www.bnb.com.cn/newbnb/bnb02/home/index.htm" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">泡　泡　堂</A> 
<DT><A href="http://192.168.9.10/index.jsp" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1126085666">榕基企业内网</A> 
<DT><A href="http://www.microsoft.com/china/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">微软(中国)有限公司</A> 
<DT><A href="http://www.sina.com.cn/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1128063554">新浪首页</A> 
<DT><A href="http://music.yisou.com/index.html?source=yisou_www_hptab&amp;pid=yisou&amp;p=" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1127888784">一搜MP3搜索</A> 
<DT><A href="http://main.oshh.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1126659188">原点工作室 -- 网站首页</A> 
<DT><A href="http://www.wf800.com/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">中国工作流论坛</A> 
<DT><A href="http://www.csdn.net/develop/author/netauthor/accesine960/" ADD_DATE="1123209666" LAST_VISIT="1128787200" LAST_MODIFIED="1123209668">中国软件--专栏作家--accesine960专栏</A> 
<DT><A href="http://127.0.0.1/" ADD_DATE="1123823349" LAST_VISIT="1128787200" LAST_MODIFIED="1127356422">localhost</A> 
<DT><A href="http://192.168.4.201:81/zzb/admin/" ADD_DATE="1124269760" LAST_VISIT="1128787200" LAST_MODIFIED="1126575696">RJ-Netyou</A> 
<DT><A href="http://spring.jactiongroup.net/" ADD_DATE="1125307679" LAST_VISIT="1128787200" LAST_MODIFIED="1125307680">SpringFramework中文论坛 -- 首页</A> 
<DT><A href="http://forum.redsaga.com/viewforum.php?f=6" ADD_DATE="1126148381" LAST_VISIT="1128787200" LAST_MODIFIED="1126148382">满江红战记 -- 浏览论坛 - 《深入浅出Hibernate》</A> 
<DT><A href="http://www.javaeye.com/" ADD_DATE="1126162169" LAST_VISIT="1128787200" LAST_MODIFIED="1126162170">Java视线论坛 -- 首页</A> 
<DT><A href="http://zhdotemacs.sourceforge.net/emacs/" ADD_DATE="1127963265" LAST_VISIT="1128787200" LAST_MODIFIED="1127963266">Emacs 中文化指南</A> 
<DT><A href="http://www.math.pku.edu.cn/teachers/lidf/download/emacs/" ADD_DATE="1127964138" LAST_VISIT="1128787200" LAST_MODIFIED="1127964140">Emacs软件</A> 
<DT><A href="http://cn.iblog.com/home.php" ADD_DATE="1128824821" LAST_VISIT="1128787200" LAST_MODIFIED="1128824822">iBlog - 博客网</A> </DT></DL><img src ="http://www.blogjava.net/snoics/aggbug/15060.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/snoics/" target="_blank">snoics</a> 2005-10-09 15:03 <a href="http://www.blogjava.net/snoics/articles/15060.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>近期要接下去的学习内容</title><link>http://www.blogjava.net/snoics/articles/15049.html</link><dc:creator>snoics</dc:creator><author>snoics</author><pubDate>Sun, 09 Oct 2005 06:18:00 GMT</pubDate><guid>http://www.blogjava.net/snoics/articles/15049.html</guid><wfw:comment>http://www.blogjava.net/snoics/comments/15049.html</wfw:comment><comments>http://www.blogjava.net/snoics/articles/15049.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/snoics/comments/commentRss/15049.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/snoics/services/trackbacks/15049.html</trackback:ping><description><![CDATA[1、Hibernate&nbsp;&nbsp; 学习的不够深刻，还有很多的问题没有弄明白，是最近要解决的重点<BR><BR>2、Spring <BR><BR>3、JSF<BR><BR>以上三个争取在两个月的时间内完成大部分<BR><BR>4、RMI<BR><BR>5、EJB<BR><BR>6、设计模式<BR><BR>7、CPP<img src ="http://www.blogjava.net/snoics/aggbug/15049.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/snoics/" target="_blank">snoics</a> 2005-10-09 14:18 <a href="http://www.blogjava.net/snoics/articles/15049.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>