<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/FreeWave" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/FreeWave" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 18 Jun 2009 17:42:00 GMT</lastBuildDate><title>FreeWave's space</title><description>厚积薄发</description><link>http://blog.csdn.net/FreeWave/</link><item><title>Cookie在IE和Firefox上的小差别</title><link>http://blog.csdn.net/FreeWave/archive/2009/06/18/4280611.aspx</link><wfw:comment>http://blog.csdn.net/FreeWave/comments/4280611.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/FreeWave/comments/commentRss/4280611.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4280611</trackback:ping><description>今天碰到一个头疼的问题， 本想在用户认证之后，给用户生成一个票据（Ticket），存储到浏览器的cookie中， 下次用户使用网站的时候就不需要重新登陆。 在Firefox上开发， 测试，一切OK， 跑到IE上傻眼了，就是不行。 于是折腾了好一会， 终于找到了原因， 浏览器差异真让人头疼啊。下面是后台的java代码：//生成票据， 票据包含用户名和用户登录的IP地址， 然后通过加密、Base64编码得到Cookie authTicket = new Cookie(&quot;authTicket&quot;, 	new Ticket(null, -1, user.getUserName() + &quot;;&quot; + getRequest().getRemoteAddr()).toString()));//Cookie一年有效authTicket.setMaxAge(365*24*60*60);getResponse().addCookie(authTicket);通过Fidder查看IE的Http Req&lt;img src =&quot;http://blog.csdn.net/FreeWave/aggbug/4280611.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236616660/FreeWave/csdn.net/s.gif?r=http://blog.csdn.net/FreeWave/archive/2009/06/18/4280611.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/FreeWave/236616660/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/FreeWave/236616660/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 19 Jun 2009 01:42:00 +0800</pubDate><author>FreeWave</author><comments>http://blog.csdn.net/FreeWave/archive/2009/06/18/4280611.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/FreeWave/archive/2009/06/18/4280611.aspx</guid><dc:creator>FreeWave</dc:creator><fs:srclink>http://blog.csdn.net/FreeWave/archive/2009/06/18/4280611.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/FreeWave/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/FreeWave/~7403747/236616660/5513268</fs:itemid></item><item><title>javascript 对html内容的关键字高亮显示</title><link>http://blog.csdn.net/FreeWave/archive/2009/06/17/4277386.aspx</link><wfw:comment>http://blog.csdn.net/FreeWave/comments/4277386.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/FreeWave/comments/commentRss/4277386.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4277386</trackback:ping><description>&lt;br /&gt;通过javascript对html里面内容进行高亮显示， 可以同时高亮多个关键字， 每个关键字以不同的颜色展示&lt;br /&gt;代码如下：&lt;br /&gt;/**
 * 高亮显示关键字, 构造函数
 * @param {} colors 颜色数组，其中每个元素是一个 '背景色,前景色' 组合
 */
var Highlighter = function(colors) {
 this.colors = colors;
 if (this.colors == null) {
  //默认颜色
  this.colors = ['#ffff00,#000000','#dae9d1,#000000','#eabcf4,#000000',
  '#c8e5ef,#000000','#f3e3cb, #000000', '#e7cfe0,#000000',
  '#c5d1f1,#000000','#deeee4, #000000','#b55ed2,#000000', 
  '#dcb7a0,#333333', '#7983ab,#000000', '#6894b5, #&lt;img src =&quot;http://blog.csdn.net/FreeWave/aggbug/4277386.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236616661/FreeWave/csdn.net/s.gif?r=http://blog.csdn.net/FreeWave/archive/2009/06/17/4277386.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/FreeWave/236616661/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/FreeWave/236616661/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 18 Jun 2009 03:22:00 +0800</pubDate><author>FreeWave</author><comments>http://blog.csdn.net/FreeWave/archive/2009/06/17/4277386.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/FreeWave/archive/2009/06/17/4277386.aspx</guid><dc:creator>FreeWave</dc:creator><fs:srclink>http://blog.csdn.net/FreeWave/archive/2009/06/17/4277386.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/FreeWave/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/FreeWave/~7403747/236616661/5513268</fs:itemid></item><item><title>Ajax导致的 internet explorer 无法打开internet 站点</title><link>http://blog.csdn.net/FreeWave/archive/2009/06/10/4258418.aspx</link><wfw:comment>http://blog.csdn.net/FreeWave/comments/4258418.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/FreeWave/comments/commentRss/4258418.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4258418</trackback:ping><description>&lt;br /&gt;在Firefox下调试Extjs， 一切OK，跑到IE下测试的时候出现“internet explorer 无法打开internet 站点”，相当的囧。 基本上知道是因为Ajax造成的， 在document没加载完毕的时候调用appendChild或者innerHTML之类的灰导致IE解析失败， 但由于改动巨大， n次的排除之下终于遭到了问题所在----是因为在document没有加载完成的时候调用了Ext的Window的show和hide方法， 相当的脆弱。&lt;br /&gt;&lt;br /&gt;相比之下Firefox对Ajax的支持不错。 不过Firefox的缓存机制有点雷人， 摸了半天，装了个是Cache Status插件来清除缓存， 好像有时候没用， 最后查到“工具-&gt;选项-&gt;高级-&gt;立刻清楚”可以清除缓存。&lt;br /&gt;另外在html里面加上    也可以使Firefox不缓存该html页。&lt;br /&gt;&lt;br /&gt;附排查问题过程中查到的一篇文章，总结的很好：&lt;img src =&quot;http://blog.csdn.net/FreeWave/aggbug/4258418.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236616662/FreeWave/csdn.net/s.gif?r=http://blog.csdn.net/FreeWave/archive/2009/06/10/4258418.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/FreeWave/236616662/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/FreeWave/236616662/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 11 Jun 2009 02:08:00 +0800</pubDate><author>FreeWave</author><comments>http://blog.csdn.net/FreeWave/archive/2009/06/10/4258418.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/FreeWave/archive/2009/06/10/4258418.aspx</guid><dc:creator>FreeWave</dc:creator><fs:srclink>http://blog.csdn.net/FreeWave/archive/2009/06/10/4258418.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/FreeWave/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/FreeWave/~7403747/236616662/5513268</fs:itemid></item><item><title>Extjs RowExpander的扩展，支持异步加载</title><link>http://blog.csdn.net/FreeWave/archive/2009/06/08/4252699.aspx</link><wfw:comment>http://blog.csdn.net/FreeWave/comments/4252699.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/FreeWave/comments/commentRss/4252699.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4252699</trackback:ping><description>ExtjsExt.grid.RowExpander异步加载扩展&lt;img src =&quot;http://blog.csdn.net/FreeWave/aggbug/4252699.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236616663/FreeWave/csdn.net/s.gif?r=http://blog.csdn.net/FreeWave/archive/2009/06/08/4252699.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/FreeWave/236616663/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/FreeWave/236616663/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 09 Jun 2009 05:03:00 +0800</pubDate><author>FreeWave</author><comments>http://blog.csdn.net/FreeWave/archive/2009/06/08/4252699.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/FreeWave/archive/2009/06/08/4252699.aspx</guid><dc:creator>FreeWave</dc:creator><fs:srclink>http://blog.csdn.net/FreeWave/archive/2009/06/08/4252699.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/FreeWave/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/FreeWave/~7403747/236616663/5513268</fs:itemid></item><item><title>java utf-8 文件的读写</title><link>http://blog.csdn.net/FreeWave/archive/2009/06/01/4233072.aspx</link><wfw:comment>http://blog.csdn.net/FreeWave/comments/4233072.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/FreeWave/comments/commentRss/4233072.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4233072</trackback:ping><description>java utf-8 文件的读写&lt;img src =&quot;http://blog.csdn.net/FreeWave/aggbug/4233072.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236616664/FreeWave/csdn.net/s.gif?r=http://blog.csdn.net/FreeWave/archive/2009/06/01/4233072.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/FreeWave/236616664/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/FreeWave/236616664/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 01 Jun 2009 23:00:00 +0800</pubDate><author>FreeWave</author><comments>http://blog.csdn.net/FreeWave/archive/2009/06/01/4233072.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/FreeWave/archive/2009/06/01/4233072.aspx</guid><dc:creator>FreeWave</dc:creator><fs:srclink>http://blog.csdn.net/FreeWave/archive/2009/06/01/4233072.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/FreeWave/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/FreeWave/~7403747/236616664/5513268</fs:itemid></item><item><title>编译json（练习javac、jar和java命令的使用）</title><link>http://blog.csdn.net/FreeWave/archive/2009/05/14/4183731.aspx</link><wfw:comment>http://blog.csdn.net/FreeWave/comments/4183731.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/FreeWave/comments/commentRss/4183731.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4183731</trackback:ping><description>1、在http://www.json.org/java/下载json.zip2、解压到d:\demo下面， 现在所有的java源文件处于 d:\demo\org\json 下面3、进入命令行， 切换到d:\demo\org\json目录下， 输入下面的命令对所有java文件进行编译，编译后的所有文件按照包结构放在d:\demo\org\json\classes目录下     javac -Xlint:unchecked -d classes *.java 4、进入classes目录，使用下面的命令对所有class文件打包，生成json.jar    jar cvf json.jar -C org/.&lt;img src =&quot;http://blog.csdn.net/FreeWave/aggbug/4183731.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236616665/FreeWave/csdn.net/s.gif?r=http://blog.csdn.net/FreeWave/archive/2009/05/14/4183731.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/FreeWave/236616665/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/FreeWave/236616665/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 15 May 2009 00:04:00 +0800</pubDate><author>FreeWave</author><comments>http://blog.csdn.net/FreeWave/archive/2009/05/14/4183731.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/FreeWave/archive/2009/05/14/4183731.aspx</guid><dc:creator>FreeWave</dc:creator><fs:srclink>http://blog.csdn.net/FreeWave/archive/2009/05/14/4183731.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/FreeWave/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/FreeWave/~7403747/236616665/5513268</fs:itemid></item><item><title>Unbuntu 在英文Locale下的输入法安装</title><link>http://blog.csdn.net/FreeWave/archive/2008/12/26/3611726.aspx</link><wfw:comment>http://blog.csdn.net/FreeWave/comments/3611726.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/FreeWave/comments/commentRss/3611726.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3611726</trackback:ping><description>ubuntu, fcitx, 中文输入法&lt;img src =&quot;http://blog.csdn.net/FreeWave/aggbug/3611726.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/FreeWave/236616666/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/FreeWave/236616666/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 26 Dec 2008 18:40:00 +0800</pubDate><author>FreeWave</author><comments>http://blog.csdn.net/FreeWave/archive/2008/12/26/3611726.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/FreeWave/archive/2008/12/26/3611726.aspx</guid><dc:creator>FreeWave</dc:creator><fs:srclink>http://blog.csdn.net/FreeWave/archive/2008/12/26/3611726.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/FreeWave/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/FreeWave/~7403747/236616666/5513268</fs:itemid></item><item><title>SQL Server 常用函数和日期操作</title><link>http://blog.csdn.net/FreeWave/archive/2008/10/29/3173545.aspx</link><wfw:comment>http://blog.csdn.net/FreeWave/comments/3173545.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/FreeWave/comments/commentRss/3173545.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3173545</trackback:ping><description>SQL Server 函数 日期&lt;img src =&quot;http://blog.csdn.net/FreeWave/aggbug/3173545.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/FreeWave/236616667/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/FreeWave/236616667/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 29 Oct 2008 18:11:00 +0800</pubDate><author>FreeWave</author><comments>http://blog.csdn.net/FreeWave/archive/2008/10/29/3173545.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/FreeWave/archive/2008/10/29/3173545.aspx</guid><dc:creator>FreeWave</dc:creator><fs:srclink>http://blog.csdn.net/FreeWave/archive/2008/10/29/3173545.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/FreeWave/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/FreeWave/~7403747/236616667/5513268</fs:itemid></item><item><title>使用Openssl保管密码</title><link>http://blog.csdn.net/FreeWave/archive/2008/10/28/3168955.aspx</link><wfw:comment>http://blog.csdn.net/FreeWave/comments/3168955.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/FreeWave/comments/commentRss/3168955.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3168955</trackback:ping><description>openssl&lt;img src =&quot;http://blog.csdn.net/FreeWave/aggbug/3168955.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/FreeWave/236616668/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/FreeWave/236616668/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 29 Oct 2008 03:07:00 +0800</pubDate><author>FreeWave</author><comments>http://blog.csdn.net/FreeWave/archive/2008/10/28/3168955.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/FreeWave/archive/2008/10/28/3168955.aspx</guid><dc:creator>FreeWave</dc:creator><fs:srclink>http://blog.csdn.net/FreeWave/archive/2008/10/28/3168955.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/FreeWave/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/FreeWave/~7403747/236616668/5513268</fs:itemid></item><item><title>windbg中常用的命令</title><link>http://blog.csdn.net/FreeWave/archive/2008/04/21/2311171.aspx</link><wfw:comment>http://blog.csdn.net/FreeWave/comments/2311171.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/FreeWave/comments/commentRss/2311171.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2311171</trackback:ping><description>windbg&lt;img src =&quot;http://blog.csdn.net/FreeWave/aggbug/2311171.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/FreeWave/236616669/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/FreeWave/236616669/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 21 Apr 2008 19:08:00 +0800</pubDate><author>FreeWave</author><comments>http://blog.csdn.net/FreeWave/archive/2008/04/21/2311171.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/FreeWave/archive/2008/04/21/2311171.aspx</guid><dc:creator>FreeWave</dc:creator><fs:srclink>http://blog.csdn.net/FreeWave/archive/2008/04/21/2311171.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/FreeWave/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/FreeWave/~7403747/236616669/5513268</fs:itemid></item></channel></rss>