﻿<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>JSSAY&#039;S BLOG</title>
	<atom:link href="http://www.jssay.com/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jssay.com/blog</link>
	<description>关注Java, Linux, 互联网, SEO, Wordpress, Jquery, Web前端</description>
	<lastBuildDate>Fri, 30 Sep 2011 09:13:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Spring通过代理发送邮件</title>
		<link>http://www.jssay.com/blog/index.php/2011/09/30/send-e-mail-by-spring/</link>
		<comments>http://www.jssay.com/blog/index.php/2011/09/30/send-e-mail-by-spring/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 09:13:42 +0000</pubDate>
		<dc:creator>jssay</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[Spring]]></category>

		<guid isPermaLink="false">http://www.jssay.com/blog/?p=1663</guid>
		<description><![CDATA[ Spring通过代理发送邮件

我们在使用Spring集成的mail框架发送邮件时，只要简单地配置主机以及用户名和密码就好了，就像这样：
&#60;bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl"&#62;
		&#60;property name="host" value="smtp.163.com"&#62;&#60;/property&#62;
		&#60;property name="username" value="YOUR_USERNAME" /&#62;
		&#60;property name="password" value="YOUR_PASSWORD" /&#62;
&#60;/bean&#62;

但是，如果你通过代理上网的，那么你在发送邮件时，就会出现邮件服务器连接不上的问题，解决方案很简单，就在之前的配置上多加一段：
&#60;code&#62;
&#60;bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl"&#62;
		&#60;property name="host" value="smtp.163.com"&#62;&#60;/property&#62;
		&#60;property name="username" value="jssay2011" /&#62;
		&#60;property name="password" value="lh841028" /&#62;
		&#60;property name="javaMailProperties"&#62;
			&#60;props&#62;
				&#60;prop key="mail.smtp.auth"&#62;true&#60;/prop&#62;
				&#60;prop key="http.proxyHost"&#62;YOUR_PROXY_HOST&#60;/prop&#62;
				&#60;prop key="http.proxyPort"&#62;YOUR_PROXY_PORT&#60;/prop&#62;
			&#60;/props&#62;
		&#60;/property&#62;
&#60;/bean&#62;]]></description>
			<content:encoded><![CDATA[<p> Spring通过代理发送邮件</p>
<p>我们在使用Spring集成的mail框架发送邮件时，只要简单地配置主机以及用户名和密码就好了，就像这样：</p>
<p>&lt;bean id=&#8221;mailSender&#8221; class=&#8221;org.springframework.mail.javamail.JavaMailSenderImpl&#8221;&gt;<br />
		&lt;property name=&#8221;host&#8221; value=&#8221;smtp.163.com&#8221;&gt;&lt;/property&gt;<br />
		&lt;property name=&#8221;username&#8221; value=&#8221;YOUR_USERNAME&#8221; /&gt;<br />
		&lt;property name=&#8221;password&#8221; value=&#8221;YOUR_PASSWORD&#8221; /&gt;<br />
&lt;/bean&gt;</p>
<p>但是，如果你通过代理上网的，那么你在发送邮件时，就会出现邮件服务器连接不上的问题，解决方案很简单，就在之前的配置上多加一段：</p>
<p>&lt;bean id=&#8221;mailSender&#8221; class=&#8221;org.springframework.mail.javamail.JavaMailSenderImpl&#8221;&gt;<br />
		&lt;property name=&#8221;host&#8221; value=&#8221;smtp.163.com&#8221;&gt;&lt;/property&gt;<br />
		&lt;property name=&#8221;username&#8221; value=&#8221;jssay2011&#8243; /&gt;<br />
		&lt;property name=&#8221;password&#8221; value=&#8221;lh841028&#8243; /&gt;<br />
		&lt;property name=&#8221;javaMailProperties&#8221;&gt;<br />
			&lt;props&gt;<br />
				&lt;prop key=&#8221;mail.smtp.auth&#8221;&gt;true&lt;/prop&gt;<br />
				&lt;prop key=&#8221;http.proxyHost&#8221;&gt;YOUR_PROXY_HOST&lt;/prop&gt;<br />
				&lt;prop key=&#8221;http.proxyPort&#8221;&gt;YOUR_PROXY_PORT&lt;/prop&gt;<br />
			&lt;/props&gt;<br />
		&lt;/property&gt;<br />
&lt;/bean&gt;</p>
<h2  class="related_post_title">随机日志</h2><ul class="related_post"><li>2009年10月27日 -- <a href="http://www.jssay.com/blog/index.php/2009/10/27/%e5%9b%bd%e9%99%85%e8%b1%a1%e6%a3%8b-%e8%8b%b1%e8%af%ad%e6%b8%b8%e6%88%8f/" title="国际象棋-英语游戏">国际象棋-英语游戏</a></li><li>2010年10月11日 -- <a href="http://www.jssay.com/blog/index.php/2010/10/11/recommended-all-ten-words-back-good-software/" title="推荐十款优秀的背单词软件">推荐十款优秀的背单词软件</a></li><li>2010年01月28日 -- <a href="http://www.jssay.com/blog/index.php/2010/01/28/%e5%8a%b1%e5%bf%97%e5%90%8d%e8%a8%80100%e5%8f%a5/" title="励志名言100句">励志名言100句</a></li><li>2010年04月30日 -- <a href="http://www.jssay.com/blog/index.php/2010/04/30/%e2%80%9c%e8%ae%be%e8%ae%a1%e2%80%9d%e4%bd%a0%e7%9a%84%e4%bb%a3%e7%a0%81/" title="“设计”你的代码 ">“设计”你的代码 </a></li><li>2010年10月12日 -- <a href="http://www.jssay.com/blog/index.php/2010/10/12/an-interesting-helloworld-program/" title="一个有趣的HelloWorld程序">一个有趣的HelloWorld程序</a></li><li>2010年08月31日 -- <a href="http://www.jssay.com/blog/index.php/2010/08/31/jdk%e5%ad%a6%e4%b9%a0%e7%ac%94%e8%ae%b0%e4%b9%8b%e5%8f%96%e6%95%b4%e5%87%bd%e6%95%b0/" title="JDK学习笔记之取整函数">JDK学习笔记之取整函数</a></li><li>2009年10月27日 -- <a href="http://www.jssay.com/blog/index.php/2009/10/27/%e6%8b%bc%e5%9b%be%e6%b8%b8%e6%88%8f/" title="拼图游戏">拼图游戏</a></li><li>2011年01月12日 -- <a href="http://www.jssay.com/blog/index.php/2011/01/12/how-to-get-home-this-new-year/" title="今年过年如何回家">今年过年如何回家</a></li><li>2010年05月12日 -- <a href="http://www.jssay.com/blog/index.php/2010/05/12/rdbms%e7%9a%84lucene%e7%88%ac%e8%99%ab/" title="Rdbms的lucene爬虫">Rdbms的lucene爬虫</a></li><li>2009年11月15日 -- <a href="http://www.jssay.com/blog/index.php/2009/11/15/japanese-learning/" title="日本人学汉语">日本人学汉语</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jssay.com/blog/index.php/2011/09/30/send-e-mail-by-spring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>myeclipse最新版(v9.1)下载</title>
		<link>http://www.jssay.com/blog/index.php/2011/08/18/myeclipse-the-latest-version-v9-1-download/</link>
		<comments>http://www.jssay.com/blog/index.php/2011/08/18/myeclipse-the-latest-version-v9-1-download/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 15:45:18 +0000</pubDate>
		<dc:creator>jssay</dc:creator>
				<category><![CDATA[编程工具]]></category>
		<category><![CDATA[MyEclipse]]></category>
		<category><![CDATA[myeclipse9.1]]></category>

		<guid isPermaLink="false">http://www.jssay.com/blog/?p=1659</guid>
		<description><![CDATA[以下公布了几乎所有新版本的下载链接，由于时间关系就没有一一验证可下载性了，只挑了其中一个试了是可以的，如果你直接地址栏输入链接应该是不可行的，建议您使用迅雷下载。

MyEclipse 9.1主要改进包括：

    * 首先MyEclipse 9.1已经基于Eclipse 3.6的。

    * MyEclipse 9.1增强了对Java EE 6高级特性的支持，包括对 Servlet 3.0， JSF 2.0， JPA 2.0， EJB 3.1， JAX-RS 1.1的高级特性的支持。

    * MyEclipse 9.1增强了对ICEfaces 2的支持。

    * MyEclipse 9.1提供了完美的64bit window安装版本，让那些64bit window操作系统的朋友可以不用发愁了。

    * MyEclipse 9.1另一大亮点就是增加了对Cocoa的支持。

    * 最后要提及的就是MyEclipse 9.1对Struts 2的增强了。]]></description>
			<content:encoded><![CDATA[<p>以下公布了几乎所有新版本的下载链接，由于时间关系就没有一一验证可下载性了，只挑了其中一个试了是可以的，如果你直接地址栏输入链接应该是不可行的，建议您使用迅雷下载。</p>
<p><strong>MyEclipse 9.1主要改进包括：</strong></p>
<p>    * 首先MyEclipse 9.1已经基于Eclipse 3.6的。</p>
<p>    * MyEclipse 9.1增强了对Java EE 6高级特性的支持，包括对 Servlet 3.0， JSF 2.0， JPA 2.0， EJB 3.1， JAX-RS 1.1的高级特性的支持。</p>
<p>    * MyEclipse 9.1增强了对ICEfaces 2的支持。</p>
<p>    * MyEclipse 9.1提供了完美的64bit window安装版本，让那些64bit window操作系统的朋友可以不用发愁了。</p>
<p>    * MyEclipse 9.1另一大亮点就是增加了对Cocoa的支持。</p>
<p>    * 最后要提及的就是MyEclipse 9.1对Struts 2的增强了。</p>
<p><strong>MyEclipse 9.1下载地址：</strong></p>
<p>   1. http://downloads.myeclipseide.com/downloads/products/eworkbench/helios/installers/myeclipse-9.1-offline-installer-windows.exe<br />
   2. http://downloads.myeclipseide.com/downloads/products/eworkbench/helios/installers/myeclipse-9.1-offline-installer-linux.run<br />
   3. http://downloads.myeclipseide.com/downloads/products/eworkbench/helios/installers/myeclipse-9.1-offline-installer-macosx.dmg</p>
<p>MyEclipse Blue Edition 9.1</p>
<p>   1. http://downloads.myeclipseide.com/downloads/products/eworkbench/helios/installers/myeclipse-blue-9.1-offline-installer-windows.exe<br />
   2. http://downloads.myeclipseide.com/downloads/products/eworkbench/helios/installers/myeclipse-blue-9.1-offline-installer-linux.run</p>
<p>MyEclipse for Spring for STS 2.3.2 (Galileo)</p>
<p>http://downloads.myeclipseide.com/downloads/products/eworkbench/galileo/me4s-eclipse</p>
<p>MyEclipse for Spring for STS 2.5 (Helios)</p>
<p>http://downloads.myeclipseide.com/downloads/products/eworkbench/helios/me4s-eclipse</p>
<p>MyEclipse for Spring 9.1</p>
<p>   1. http://downloads.myeclipseide.com/downloads/products/eworkbench/helios/installers/MyEclipseForSpring-9.1-offline-installer-windows.exe<br />
   2. http://downloads.myeclipseide.com/downloads/products/eworkbench/helios/installers/MyEclipseForSpring-9.1-offline-installer-linux.run<br />
   3. http://downloads.myeclipseide.com/downloads/products/eworkbench/helios/installers/MyEclipseForSpring-9.1-offline-installer-macosx.dmg</p>
<p>文章摘自:http://xiexiejiao.cn/java/myeclipse-9-1-download.html</p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2011年03月23日 -- <a href="http://www.jssay.com/blog/index.php/2011/03/23/myeclipse-latest-version-v9-0-download/" title="MyEclipse最新版(V9.0)下载">MyEclipse最新版(V9.0)下载</a></li><li>2010年10月16日 -- <a href="http://www.jssay.com/blog/index.php/2010/10/16/myeclipse-comment-on-how-to-modify-the/" title="如何修改MyEclipse注释的作者">如何修改MyEclipse注释的作者</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jssay.com/blog/index.php/2011/08/18/myeclipse-the-latest-version-v9-1-download/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>冒泡排序新解</title>
		<link>http://www.jssay.com/blog/index.php/2011/04/12/a-new-bubble-sort/</link>
		<comments>http://www.jssay.com/blog/index.php/2011/04/12/a-new-bubble-sort/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 09:46:55 +0000</pubDate>
		<dc:creator>jssay</dc:creator>
				<category><![CDATA[程序设计]]></category>
		<category><![CDATA[冒泡排序]]></category>
		<category><![CDATA[舞蹈]]></category>

		<guid isPermaLink="false">http://www.jssay.com/blog/?p=1651</guid>
		<description><![CDATA[对于一个程序员来说，冒泡排序应该是最简单也最熟悉不过了。在这里我并不想教大家如何理解冒泡排序，而是请大家欣赏一段舞蹈，这不是一般的舞蹈，而是用来诠释冒泡排序过程的舞蹈，相信看完之后，你对冒泡排序又有了一段更深的了解（尽管它并不高深），就当做是coding之后的休闲吧。
<a href="http://www.jssay.com/blog/wp-content/uploads/2011/04/bubble.jpg"><img src="http://www.jssay.com/blog/wp-content/uploads/2011/04/bubble.jpg" alt="bubble" title="bubble" width="500" height="281" class="aligncenter size-full wp-image-1653" /></a>]]></description>
			<content:encoded><![CDATA[<p>对于一个程序员来说，冒泡排序应该是最简单也最熟悉不过了。在这里我并不想教大家如何理解冒泡排序，而是请大家欣赏一段舞蹈，这不是一般的舞蹈，而是用来诠释冒泡排序过程的舞蹈，相信看完之后，你对冒泡排序又有了一段更深的了解（尽管它并不高深），就当做是coding之后的休闲吧。</p>
<p><embed src="http://player.youku.com/player.php/sid/XMjU4MTg3MTU2/v.swf" quality="high" width="480" height="400" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"></embed></p>
<h2  class="related_post_title">随机日志</h2><ul class="related_post"><li>2010年01月9日 -- <a href="http://www.jssay.com/blog/index.php/2010/01/09/tadpole-coding/" title="蝌蚪编码">蝌蚪编码</a></li><li>2011年01月3日 -- <a href="http://www.jssay.com/blog/index.php/2011/01/03/web-site-frequented-by-programmers/" title="程序员常去的网站">程序员常去的网站</a></li><li>2010年05月6日 -- <a href="http://www.jssay.com/blog/index.php/2010/05/06/performance-tuning-glassfish-under-max-connections-is-extremely-confusing-parameters/" title="glassfish下的性能调优：令人极度困惑的Max Connections参数 ">glassfish下的性能调优：令人极度困惑的Max Connections参数 </a></li><li>2009年10月20日 -- <a href="http://www.jssay.com/blog/index.php/2009/10/20/how-to-solve-paper-insert-html-or-js-code-problem/" title="如何解决文章中插入html或js代码的问题？">如何解决文章中插入html或js代码的问题？</a></li><li>2010年05月24日 -- <a href="http://www.jssay.com/blog/index.php/2010/05/24/how-do-i-know-my-site-have-access-to-google-sandbox-how-to-deal-with/" title="怎样知道我的网站有没有进入Google沙盒？如何处理？">怎样知道我的网站有没有进入Google沙盒？如何处理？</a></li><li>2010年01月29日 -- <a href="http://www.jssay.com/blog/index.php/2010/01/29/%e6%b5%85%e8%b0%88%e4%b8%8eequals%e7%9a%84%e7%94%a8%e6%b3%95/" title="浅谈&#8221;==&#8221;与&#8221;equals&#8221;的用法">浅谈&#8221;==&#8221;与&#8221;equals&#8221;的用法</a></li><li>2010年05月10日 -- <a href="http://www.jssay.com/blog/index.php/2010/05/10/jquery-plugin-conflict-over/" title="多个Jquery插件的冲突问题">多个Jquery插件的冲突问题</a></li><li>2010年09月28日 -- <a href="http://www.jssay.com/blog/index.php/2010/09/28/damn-iis/" title="该死的IIS">该死的IIS</a></li><li>2009年12月1日 -- <a href="http://www.jssay.com/blog/index.php/2009/12/01/jquery%e5%ad%a6%e4%b9%a0%e8%b5%84%e6%96%99/" title="JQuery学习资料">JQuery学习资料</a></li><li>2010年09月2日 -- <a href="http://www.jssay.com/blog/index.php/2010/09/02/%e7%99%be%e5%ba%a6%e6%96%b0%e5%b9%b3%e5%8f%b0%e4%b9%8b%e6%88%91%e8%a7%81/" title="百度新平台之我见">百度新平台之我见</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jssay.com/blog/index.php/2011/04/12/a-new-bubble-sort/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>推荐几个ICON图标搜索引擎</title>
		<link>http://www.jssay.com/blog/index.php/2011/04/08/recommended-search-engine-a-few-icon-icon/</link>
		<comments>http://www.jssay.com/blog/index.php/2011/04/08/recommended-search-engine-a-few-icon-icon/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 02:47:16 +0000</pubDate>
		<dc:creator>jssay</dc:creator>
				<category><![CDATA[Web设计资源]]></category>
		<category><![CDATA[ICON]]></category>
		<category><![CDATA[图标]]></category>

		<guid isPermaLink="false">http://www.jssay.com/blog/?p=1647</guid>
		<description><![CDATA[对于每个网站开发者来说，设计是很重要的一部分。图标是设计中一个环节。你可以找到许多集合图标的网站。但很难找到免费的高质量图标。这是我在此分享一些免费的高质量图标搜索引擎的原因。你要访问这些引擎以找到高质量图标。如果你知道更多的网站，也请与我们分享！]]></description>
			<content:encoded><![CDATA[<p>对于每个网站开发者来说，设计是很重要的一部分。图标是设计中一个环节。你可以找到许多集合图标的网站。但很难找到免费的高质量图标。这是我在此分享一些免费的高质量图标搜索引擎的原因。你要访问这些引擎以找到高质量图标。如果你知道更多的网站，也请与我们分享！</p>
<p>　　<a href="http://www.iconfinder.com/">IconFinder</a><br />
　　以简便并且有效的方式为网站设计者和开发人员提供高质量的图标。<br />
<img src="http://smashinghub.com/wp-content/uploads/2011/03/IconFinder_thumb.jpg" alt="" /></p>
<p>　　<a href="http://www.iconlet.com/">Iconlet</a><br />
　　是一个单纯的免费图标和图像的搜索引擎。<br />
<img src="http://smashinghub.com/wp-content/uploads/2011/03/Iconlet_thumb.jpg" alt="" /></p>
<p>　　<a href="http://www.iconscan.com/">IconScan</a><br />
<img src="http://smashinghub.com/wp-content/uploads/2011/03/IconScan_thumb.jpg" alt="" /></p>
<p>　　<a href="http://www.iconseeker.com/">IconSeeker</a><br />
<img src="http://smashinghub.com/wp-content/uploads/2011/03/Icon-Seeker_thumb.jpg" alt="" /></p>
<p>　　是最好的在线图标搜索引擎，它有5万多个高质量的图标，每个图标都有适合 Windows、Macintosh和Linux 系统的PNG、ICO和ICNS 格式。</p>
<p>　　<a href="http://icons-search.com/">Icons Search</a><br />
<img src="http://smashinghub.com/wp-content/uploads/2011/03/Icons-Search_thumb.jpg" alt="" /></p>
<p>　　是有助于你在网上找到高质量图标的图标搜索引擎。</p>
<p>　　<a href="http://www.mricons.com/">MrIcons</a><br />
<img src="http://smashinghub.com/wp-content/uploads/2011/03/MrIcons_thumb.jpg" alt="" /></p>
<p>　<a href="http://www.veryicon.com/">VeryIcon</a><br />
<img src="http://smashinghub.com/wp-content/uploads/2011/03/VeryIcon_thumb.jpg" alt="" /><br />
　　也是一个非常有用的网站，你可以用它找到高质量的图标，它有1千多个图标包共2万多个高质量的网络图标。</p>
<p>　　<a href="http://www.iconlook.com/">IconLook</a><br />
<img src="http://smashinghub.com/wp-content/uploads/2011/03/iconlook_thumb.jpg" alt="" /><br />
　　在ICONlook.com 上你可以找到你想要的图标。</p>
<p>　　文章来源：http://www.jobbole.com/entry.php/610</p>
<h2  class="related_post_title">随机日志</h2><ul class="related_post"><li>2010年05月12日 -- <a href="http://www.jssay.com/blog/index.php/2010/05/12/jquery-alert-dlalogsalertconfirmprompt-replacementst/" title="jQuery Alert Dlalogs(Alert,Confirm,&#038;prompt Replacements)">jQuery Alert Dlalogs(Alert,Confirm,&#038;prompt Replacements)</a></li><li>2010年10月15日 -- <a href="http://www.jssay.com/blog/index.php/2010/10/15/download-the-latest-version-of-wordpress/" title="WordPress最新版下载">WordPress最新版下载</a></li><li>2009年10月31日 -- <a href="http://www.jssay.com/blog/index.php/2009/10/31/%e6%9c%89%e6%84%9f%ef%bc%8c%e8%bd%ac%e4%b8%80%e4%b8%8b%e7%9a%84/" title="有感，转一下的">有感，转一下的</a></li><li>2010年05月12日 -- <a href="http://www.jssay.com/blog/index.php/2010/05/12/proper-way-to-answer-difficult-questions-the-semi-finals-in-2009-java-version-find-the-smallest-number-greater-than-the-given-number-of-non-repetition/" title="有道难题2009复赛题解答（JAVA版）：求大于给定数的最小不重复数">有道难题2009复赛题解答（JAVA版）：求大于给定数的最小不重复数</a></li><li>2010年08月6日 -- <a href="http://www.jssay.com/blog/index.php/2010/08/06/myeclipse-download-the-latest-version-v8-6/" title="MyEclipse最新版下载（V8.6）">MyEclipse最新版下载（V8.6）</a></li><li>2009年11月15日 -- <a href="http://www.jssay.com/blog/index.php/2009/11/15/wcg2009%e8%a7%82%e5%90%8e%e6%9c%89%e6%84%9f/" title="WCG2009观后有感">WCG2009观后有感</a></li><li>2009年10月22日 -- <a href="http://www.jssay.com/blog/index.php/2009/10/22/how-to-linux-unix-directory-files-query/" title="如何对linux/unix目录下的文件进行查询？">如何对linux/unix目录下的文件进行查询？</a></li><li>2010年04月29日 -- <a href="http://www.jssay.com/blog/index.php/2010/04/29/%e5%bd%bb%e5%ba%95%e8%a7%a3%e5%86%b3sql-server-2005%e6%97%a0%e6%b3%95%e8%bf%9c%e7%a8%8b%e8%bf%9e%e6%8e%a5%e7%9a%84%e9%97%ae%e9%a2%98/" title="彻底解决SQL SERVER 2005无法远程连接的问题">彻底解决SQL SERVER 2005无法远程连接的问题</a></li><li>2010年08月5日 -- <a href="http://www.jssay.com/blog/index.php/2010/08/05/%e5%8d%a1%e5%b7%b4%e6%96%af%e5%9f%ba%e5%85%8d%e8%b4%b9key%e4%b8%8b%e8%bd%bd/" title="卡巴斯基免费Key下载">卡巴斯基免费Key下载</a></li><li>2010年10月19日 -- <a href="http://www.jssay.com/blog/index.php/2010/10/19/shell-script-in-the-multi-line-comments/" title="Shell Script中多行注释">Shell Script中多行注释</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jssay.com/blog/index.php/2011/04/08/recommended-search-engine-a-few-icon-icon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>又是一年清明节</title>
		<link>http://www.jssay.com/blog/index.php/2011/04/05/another-year-of-the-ching-ming-festival/</link>
		<comments>http://www.jssay.com/blog/index.php/2011/04/05/another-year-of-the-ching-ming-festival/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 15:20:19 +0000</pubDate>
		<dc:creator>jssay</dc:creator>
				<category><![CDATA[心情随笔]]></category>
		<category><![CDATA[清明]]></category>

		<guid isPermaLink="false">http://www.jssay.com/blog/?p=1643</guid>
		<description><![CDATA[又到清明节了，好久没有去给先人们扫墓了，依稀记得小时候父亲教我们用剪刀剪一种我们叫做“标”的东西，扫墓的时候，把“标”插在每座坟上，听父亲说，那东西可以在阴间换酒喝。虽然那时候的我将信将疑，但是我非常认真去对待。后来外出上学、工作了之后，很少有时间或者有条件过清明，我担心的是，再过几十年，等我们老了的时候，这种传统是否能很好的保持下去？]]></description>
			<content:encoded><![CDATA[<p>又到清明节了，好久没有去给先人们扫墓了，依稀记得小时候父亲教我们用剪刀剪一种我们叫做“标”的东西，扫墓的时候，把“标”插在每座坟上，听父亲说，那东西可以在阴间换酒喝。虽然那时候的我将信将疑，但是我非常认真去对待。后来外出上学、工作了之后，很少有时间或者有条件过清明，我担心的是，再过几十年，等我们老了的时候，这种传统是否能很好的保持下去？</p>
<p>其实在这个特殊的日子，我是非常怀念我的外婆，2008年夏天她头痛发作，匆匆离开了人世，我甚至都没来得及见她最后一面。，她一生养育了五个儿女，又帮着儿女照顾孙儿孙女们，一辈子都在操劳，每次过年回家都发现她身体也越来越差，连走路都走不稳了，但即使是这样，她还要坚持徒步一个小时送老母鸡给我吃，说我在外面读书工作辛苦，饭菜又没有营养，给我补补身体，其实最需要补身体的是她老人家，而她想到的却是她的外甥。每次想到这里我的眼睛都情不自禁的湿润了，想说太多的话给外婆听，多么希望她还在人世，这样我就可以好好孝顺她老人家了，要说我今年最大的喜事是我结婚了，但是没有几个人知道，其实我多么想让我的外婆也来参加我的婚礼，她甚至连她的外甥媳妇都没见过一面。这也许是我今生最大的遗憾。</p>
<p>太多的话也无法表达此刻我内心的感受，希望外婆在天堂里一切都好。。</p>
<h2  class="related_post_title">随机日志</h2><ul class="related_post"><li>2010年05月12日 -- <a href="http://www.jssay.com/blog/index.php/2010/05/12/jquery-alert-dlalogsalertconfirmprompt-replacementst/" title="jQuery Alert Dlalogs(Alert,Confirm,&#038;prompt Replacements)">jQuery Alert Dlalogs(Alert,Confirm,&#038;prompt Replacements)</a></li><li>2009年11月15日 -- <a href="http://www.jssay.com/blog/index.php/2009/11/15/japanese-learning/" title="日本人学汉语">日本人学汉语</a></li><li>2010年05月6日 -- <a href="http://www.jssay.com/blog/index.php/2010/05/06/gps-latitude-and-longitude-converted-into-x-y-coordinates-of-c-implementation/" title="GPS经纬度换算成X,Y坐标C#实现 ">GPS经纬度换算成X,Y坐标C#实现 </a></li><li>2009年10月20日 -- <a href="http://www.jssay.com/blog/index.php/2009/10/20/how-to-solve-paper-insert-html-or-js-code-problem/" title="如何解决文章中插入html或js代码的问题？">如何解决文章中插入html或js代码的问题？</a></li><li>2010年03月13日 -- <a href="http://www.jssay.com/blog/index.php/2010/03/13/java%e5%a6%82%e4%bd%95%e5%8f%96%e6%97%b6%e9%97%b4%e7%9a%84%e4%ba%a4%e9%9b%86/" title="Java如何取时间的交集">Java如何取时间的交集</a></li><li>2010年04月28日 -- <a href="http://www.jssay.com/blog/index.php/2010/04/28/java-resources-for-clean-sweep/" title="Java资源 一网打尽">Java资源 一网打尽</a></li><li>2010年04月28日 -- <a href="http://www.jssay.com/blog/index.php/2010/04/28/implementation-of-dynamic-formula-java-groovy/" title="java 动态公式的实现方法groovy">java 动态公式的实现方法groovy</a></li><li>2010年09月3日 -- <a href="http://www.jssay.com/blog/index.php/2010/09/03/tibcorv-entry-instance/" title="TibcoRV入门实例">TibcoRV入门实例</a></li><li>2010年08月22日 -- <a href="http://www.jssay.com/blog/index.php/2010/08/22/short-holiday/" title="短暂的假期">短暂的假期</a></li><li>2010年08月24日 -- <a href="http://www.jssay.com/blog/index.php/2010/08/24/java%e7%bc%96%e7%a0%81%e8%a7%84%e8%8c%83/" title="Java编码规范">Java编码规范</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jssay.com/blog/index.php/2011/04/05/another-year-of-the-ching-ming-festival/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>再见JavaEye</title>
		<link>http://www.jssay.com/blog/index.php/2011/04/01/goodbye-javaeye/</link>
		<comments>http://www.jssay.com/blog/index.php/2011/04/01/goodbye-javaeye/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 08:14:33 +0000</pubDate>
		<dc:creator>jssay</dc:creator>
				<category><![CDATA[心情随笔]]></category>
		<category><![CDATA[JavaEye]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://www.jssay.com/blog/?p=1641</guid>
		<description><![CDATA[几乎是每一天，我都会来光临JavaEye，已经成了一种习惯。虽然不是JavaEye的铁杆粉丝，但是毕竟也有几年的感情了，任何对JE不利的事情，我还是挺打抱不平的，记得上次关于JE的不测遭遇是JE被黑，导致JE被停了一天多，害得我下班之后总觉得心里空落落的，直到JE重新开发了，心情才好起来，一个网站能对我产生如此影响，我自己都很吃惊。

今天是一个特殊的日子，我没有去骗人，也没有遭人骗，说明我是善良的，大家也是心疼我的。即使是遭遇了谷歌的穿越搜索门，也没什么的。但是JE被Oracle强迫修改域名，实在是一件挺让人窝火的事情，仅仅是用了Java这个词，以前Sun还在的时候也没听说Sun有这意思啊，现在Java换了东家了，新东家俨然一副暴君脸面，谁看着不爽就要搞死谁，谁让他那么强大呢，就想米国一样。

话说回来，JE修改域名，对JE是一个不小的打击啊，不管是SEO还是网站知名度都收到了致命的打击。但是我还是相信JE能够顺利度过此难关。新的域名itEye也不是很糟糕，至少从意思上说的通，但是那个logo确实不怎么样，不知道是时间仓促没怎么设计还是故意做成这样，这都是次要的了，希望JE改名仅仅是改了个名字，其他的就当没有发生吧。

马上要到清明节了，那么下一个清明节就多了一个要祭奠的对象，那就是JavaEye。]]></description>
			<content:encoded><![CDATA[<p>几乎是每一天，我都会来光临JavaEye，已经成了一种习惯。虽然不是JavaEye的铁杆粉丝，但是毕竟也有几年的感情了，任何对JE不利的事情，我还是挺打抱不平的，记得上次关于JE的不测遭遇是JE被黑，导致JE被停了一天多，害得我下班之后总觉得心里空落落的，直到JE重新开发了，心情才好起来，一个网站能对我产生如此影响，我自己都很吃惊。</p>
<p>今天是一个特殊的日子，我没有去骗人，也没有遭人骗，说明我是善良的，大家也是心疼我的。即使是遭遇了谷歌的穿越搜索门，也没什么的。但是JE被Oracle强迫修改域名，实在是一件挺让人窝火的事情，仅仅是用了Java这个词，以前Sun还在的时候也没听说Sun有这意思啊，现在Java换了东家了，新东家俨然一副暴君脸面，谁看着不爽就要搞死谁，谁让他那么强大呢，就想米国一样。</p>
<p>话说回来，JE修改域名，对JE是一个不小的打击啊，不管是SEO还是网站知名度都收到了致命的打击。但是我还是相信JE能够顺利度过此难关。新的域名itEye也不是很糟糕，至少从意思上说的通，但是那个logo确实不怎么样，不知道是时间仓促没怎么设计还是故意做成这样，这都是次要的了，希望JE改名仅仅是改了个名字，其他的就当没有发生吧。</p>
<p>马上要到清明节了，那么下一个清明节就多了一个要祭奠的对象，那就是JavaEye。</p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2010年11月24日 -- <a href="http://www.jssay.com/blog/index.php/2010/11/24/javaeye-finally-unblocked/" title="JavaEye终于解封了">JavaEye终于解封了</a></li><li>2010年11月23日 -- <a href="http://www.jssay.com/blog/index.php/2010/11/23/javaeye-also-blocked/" title="JavaEye也会被封杀">JavaEye也会被封杀</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jssay.com/blog/index.php/2011/04/01/goodbye-javaeye/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MyEclipse最新版(V9.0)下载</title>
		<link>http://www.jssay.com/blog/index.php/2011/03/23/myeclipse-latest-version-v9-0-download/</link>
		<comments>http://www.jssay.com/blog/index.php/2011/03/23/myeclipse-latest-version-v9-0-download/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 09:35:14 +0000</pubDate>
		<dc:creator>jssay</dc:creator>
				<category><![CDATA[编程工具]]></category>
		<category><![CDATA[MyEclipse]]></category>

		<guid isPermaLink="false">http://www.jssay.com/blog/?p=1638</guid>
		<description><![CDATA[该版本集成了 Eclipse 3.6.1，支持 HTML5 和 JavaEE 6。 

标准版各平台下载地址： 

>>MyEclipse 9.0 for Windows 下载 
<a href="http://downloads.myeclipseide.com/downloads/products/eworkbench/helios/installers/myeclipse-9.0-offline-installer-windows.exe">MyEclipse 9.0  (Windows) </a>

>>MyEclipse 9.0 for Linux 下载 
<a href="http://downloads.myeclipseide.com/downloads/products/eworkbench/helios/installers/myeclipse-9.0-offline-installer-linux.run">MyEclipse 9.0  (Linux) </a>
]]></description>
			<content:encoded><![CDATA[<p>该版本集成了 Eclipse 3.6.1，支持 HTML5 和 JavaEE 6。 </p>
<p>标准版各平台下载地址： </p>
<p>>>MyEclipse 9.0 for Windows 下载<br />
<a href="http://downloads.myeclipseide.com/downloads/products/eworkbench/helios/installers/myeclipse-9.0-offline-installer-windows.exe">MyEclipse 9.0  (Windows) </a></p>
<p>>>MyEclipse 9.0 for Linux 下载<br />
<a href="http://downloads.myeclipseide.com/downloads/products/eworkbench/helios/installers/myeclipse-9.0-offline-installer-linux.run">MyEclipse 9.0  (Linux) </a></p>
<p>注：这里只给出了windows和linux版本的下载地址，如果需要其他版本的请留言，另外，如果发现此地址访问不了，可以试着翻墙，不要问我怎么翻，你懂的！</p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2011年08月18日 -- <a href="http://www.jssay.com/blog/index.php/2011/08/18/myeclipse-the-latest-version-v9-1-download/" title="myeclipse最新版(v9.1)下载">myeclipse最新版(v9.1)下载</a></li><li>2010年10月16日 -- <a href="http://www.jssay.com/blog/index.php/2010/10/16/myeclipse-comment-on-how-to-modify-the/" title="如何修改MyEclipse注释的作者">如何修改MyEclipse注释的作者</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jssay.com/blog/index.php/2011/03/23/myeclipse-latest-version-v9-0-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firebug1.7.0正式版发布</title>
		<link>http://www.jssay.com/blog/index.php/2011/03/23/firebug1-7-0-official-release/</link>
		<comments>http://www.jssay.com/blog/index.php/2011/03/23/firebug1-7-0-official-release/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 09:28:01 +0000</pubDate>
		<dc:creator>jssay</dc:creator>
				<category><![CDATA[软件应用]]></category>
		<category><![CDATA[FireBug]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.jssay.com/blog/?p=1636</guid>
		<description><![CDATA[伴随着Firefox4正式版的发布，Firebug1.7.0也随即登台亮相了。

新版本有以下亮点：
   * Break notification message redesign 
    * Only show applied styles 
    * Open with editor feature improved 
    * Support for local, session and global storage examination in the DOM and Console panels 
    * New API for Firebug extensions 
    * New Firebug start button 
    * Large command line has history 
    * CSS panel is now displaying @font-face rules. 
    * Pressing F1 opens a help page (Firebug UI must be opened and focused) 
    * Inspector improved and solid as a rock! 
    * Our automated testing framework improved and 150+ tests watching Firebug features ]]></description>
			<content:encoded><![CDATA[<p>伴随着Firefox4正式版的发布，Firebug1.7.0也随即登台亮相了。</p>
<p>新版本有以下亮点：<br />
   * Break notification message redesign<br />
    * Only show applied styles<br />
    * Open with editor feature improved<br />
    * Support for local, session and global storage examination in the DOM and Console panels<br />
    * New API for Firebug extensions<br />
    * New Firebug start button<br />
    * Large command line has history<br />
    * CSS panel is now displaying @font-face rules.<br />
    * Pressing F1 opens a help page (Firebug UI must be opened and focused)<br />
    * Inspector improved and solid as a rock!<br />
    * Our automated testing framework improved and 150+ tests watching Firebug features </p>
<p>下载地址：<a href="http://getfirebug.com/releases/firebug/1.7/firebug-1.7.0.xpi">http://getfirebug.com/releases/firebug/1.7/firebug-1.7.0.xpi</a> </p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2010年08月31日 -- <a href="http://www.jssay.com/blog/index.php/2010/08/31/download-the-latest-version-of-firebug/" title="FireBug最新版下载">FireBug最新版下载</a></li><li>2011年03月23日 -- <a href="http://www.jssay.com/blog/index.php/2011/03/23/firefox4-official-release/" title="Firefox4正式版发布">Firefox4正式版发布</a></li><li>2010年08月12日 -- <a href="http://www.jssay.com/blog/index.php/2010/08/12/%e6%9c%80%e6%96%b0%e7%89%88firefox%e4%b8%8b%e8%bd%bdv4-0-beta3/" title="最新版Firefox下载(V4.0 Beta3)">最新版Firefox下载(V4.0 Beta3)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jssay.com/blog/index.php/2011/03/23/firebug1-7-0-official-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox4正式版发布</title>
		<link>http://www.jssay.com/blog/index.php/2011/03/23/firefox4-official-release/</link>
		<comments>http://www.jssay.com/blog/index.php/2011/03/23/firefox4-official-release/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 09:12:28 +0000</pubDate>
		<dc:creator>jssay</dc:creator>
				<category><![CDATA[互联网]]></category>
		<category><![CDATA[软件应用]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.jssay.com/blog/?p=1630</guid>
		<description><![CDATA[喜欢firefox的童鞋注意了，firefox正式版终于与大家见面了。

该版本的界面更为精简，对HTML5提供良好的支持。 

其他新功能还包括： 

Panorama，一种新的多标签管理方式； 
应用标签，为经常使用的Web应用程序准备的微型标签； 
同步，一个基于网络的书签同步服务； 
一个集成的Web控制台； 
JaegerMonkey，一个更快的JavaScript引擎； 
硬件加速渲染和一个新的附加的SDK，可以在不用重启浏览器的情况下升级； 
隐私保护功能，可以防止网站跟踪用户的活动； ]]></description>
			<content:encoded><![CDATA[<p>喜欢firefox的童鞋注意了，firefox正式版终于与大家见面了。</p>
<p>该版本的界面更为精简，对HTML5提供良好的支持。 </p>
<p>其他新功能还包括： </p>
<p>Panorama，一种新的多标签管理方式；<br />
应用标签，为经常使用的Web应用程序准备的微型标签；<br />
同步，一个基于网络的书签同步服务；<br />
一个集成的Web控制台；<br />
JaegerMonkey，一个更快的JavaScript引擎；<br />
硬件加速渲染和一个新的附加的SDK，可以在不用重启浏览器的情况下升级；<br />
隐私保护功能，可以防止网站跟踪用户的活动； </p>
<p>下载地址:<a href="http://www.mozilla.com/en-US/firefox/all.html">http://www.mozilla.com/en-US/firefox/all.html</a> </p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2011年03月23日 -- <a href="http://www.jssay.com/blog/index.php/2011/03/23/firebug1-7-0-official-release/" title="Firebug1.7.0正式版发布">Firebug1.7.0正式版发布</a></li><li>2010年08月31日 -- <a href="http://www.jssay.com/blog/index.php/2010/08/31/download-the-latest-version-of-firebug/" title="FireBug最新版下载">FireBug最新版下载</a></li><li>2010年08月12日 -- <a href="http://www.jssay.com/blog/index.php/2010/08/12/%e6%9c%80%e6%96%b0%e7%89%88firefox%e4%b8%8b%e8%bd%bdv4-0-beta3/" title="最新版Firefox下载(V4.0 Beta3)">最新版Firefox下载(V4.0 Beta3)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jssay.com/blog/index.php/2011/03/23/firefox4-official-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何防止核辐射</title>
		<link>http://www.jssay.com/blog/index.php/2011/03/17/how-to-prevent-nuclear-radiation/</link>
		<comments>http://www.jssay.com/blog/index.php/2011/03/17/how-to-prevent-nuclear-radiation/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 05:03:26 +0000</pubDate>
		<dc:creator>jssay</dc:creator>
				<category><![CDATA[休闲生活]]></category>
		<category><![CDATA[日本地震]]></category>
		<category><![CDATA[核辐射]]></category>

		<guid isPermaLink="false">http://www.jssay.com/blog/?p=1625</guid>
		<description><![CDATA[今天早上收到QQ群里一则消息，如下：
<a href="http://www.jssay.com/blog/wp-content/uploads/2011/03/salt.jpg"><img src="http://www.jssay.com/blog/wp-content/uploads/2011/03/salt.jpg" alt="salt" title="salt" width="347" height="137" class="aligncenter size-full wp-image-1627" /></a>]]></description>
			<content:encoded><![CDATA[<p>今天早上收到QQ群里一则消息，如下：<br />
<a href="http://www.jssay.com/blog/wp-content/uploads/2011/03/salt.jpg"><img src="http://www.jssay.com/blog/wp-content/uploads/2011/03/salt.jpg" alt="salt" title="salt" width="347" height="137" class="aligncenter size-full wp-image-1627" /></a></p>
<p>起初我还一头雾水，后来群里面大家你一言我一语，我才弄清楚事情的真相，看来我真的out了。</p>
<p>就目前的态势来看，由日本地震引起的核泄漏让大家很是担心，担心遭到核辐射的威胁，于是有了今天抢盐的一幕，有人说碘盐中的典能够防辐射，但是专家说了，那根本没有用。可是专家的话也没能阻止大家对盐的热情，从云南盐业的股票涨停就可以看出。</p>
<p>那究竟怎么才能降低核辐射对我们身体的危害呢，面对核辐射我们有什么好办法呢？</p>
<p>我的办法是：最好呆在建筑物里，关好门窗，勤洗手，多喝水，然后就是锻炼身体增强自身的抵抗力了。</p>
<p>如果你有更好的想法？快来一起分享一下！</p>
<h2  class="related_post_title">随机日志</h2><ul class="related_post"><li>2009年10月17日 -- <a href="http://www.jssay.com/blog/index.php/2009/10/17/%e6%88%91%e5%ae%b6%e9%97%a8%e5%89%8d%e7%9a%84%e4%b8%a4%e5%8f%b0%e7%94%b5%e8%a7%86/" title="我家门前的两台电视">我家门前的两台电视</a></li><li>2010年04月28日 -- <a href="http://www.jssay.com/blog/index.php/2010/04/28/detailed-usage-of-java-dynamic-array/" title="Java动态数组的用法详解">Java动态数组的用法详解</a></li><li>2010年05月6日 -- <a href="http://www.jssay.com/blog/index.php/2010/05/06/gps-data-validation-check-c-code/" title="GPS数据有效性校验c#代码实现 ">GPS数据有效性校验c#代码实现 </a></li><li>2010年01月29日 -- <a href="http://www.jssay.com/blog/index.php/2010/01/29/%e6%b5%85%e8%b0%88%e4%b8%8eequals%e7%9a%84%e7%94%a8%e6%b3%95/" title="浅谈&#8221;==&#8221;与&#8221;equals&#8221;的用法">浅谈&#8221;==&#8221;与&#8221;equals&#8221;的用法</a></li><li>2010年04月28日 -- <a href="http://www.jssay.com/blog/index.php/2010/04/28/qq-website-daquan/" title="QQ网址大全">QQ网址大全</a></li><li>2010年09月13日 -- <a href="http://www.jssay.com/blog/index.php/2010/09/13/%e7%94%a8flex%e4%bb%a3%e7%a0%81%e5%ae%9e%e7%8e%b0%e7%9a%84google-finance-chart/" title="用flex代码实现的Google Finance Chart">用flex代码实现的Google Finance Chart</a></li><li>2009年09月8日 -- <a href="http://www.jssay.com/blog/index.php/2009/09/08/user-registration-on-wordpress/" title="关于wordpress用户注册问题">关于wordpress用户注册问题</a></li><li>2009年10月30日 -- <a href="http://www.jssay.com/blog/index.php/2009/10/30/play-a-game-to-protect-his-wife/" title="玩个保护老婆 的游戏！">玩个保护老婆 的游戏！</a></li><li>2010年05月28日 -- <a href="http://www.jssay.com/blog/index.php/2010/05/28/reasons-for-using-the-google-collections/" title="使用Google Collections的理由">使用Google Collections的理由</a></li><li>2010年01月21日 -- <a href="http://www.jssay.com/blog/index.php/2010/01/21/%e5%a6%82%e4%bd%95%e4%bf%9d%e6%8a%a4%e6%88%91%e4%bb%ac%e7%9a%84java%e4%bb%a3%e7%a0%81/" title="如何保护我们的Java代码">如何保护我们的Java代码</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jssay.com/blog/index.php/2011/03/17/how-to-prevent-nuclear-radiation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

