<?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:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/wssxy" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/wssxy" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 25 Dec 2009 03:02:00 GMT</lastBuildDate><title>尚兴跃的备忘录</title><description>PHP程序员。我梦想靠自己的网站赚钱</description><link>http://blog.csdn.net/blogrss.aspx?username=wssxy</link><item><title>Comet, 下一代反向AJAX（即服务器推送技术- Server-side push）</title><link>http://blog.csdn.net/wssxy/archive/2009/12/25/5073847.aspx</link><description>理解 Comet

您可能已经听说过 Comet，因为它最近受到了一定的关注。Comet 有时也称反向 Ajax 或服务器端推技术（server-side push）。其思想很简单：将数据直接从服务器推到浏览器，而不必等到浏览器请求数据。听起来简单，但是如果熟悉 Web 应用程序，尤其是 HTTP 协议，那么您就会知道，这绝不简单。实现 Comet 风格的 Web 应用程序，同时保证在浏览器和服务器上的可伸缩性，这只是在最近几年才成为可能。目前一些主流网站都有类似的原理，例如：webQQ、开心网、白社会等等，它们中消息动态都是采用类似的技术，也许具体实现方式不一样；

使用 Comet 的动机

HTTP 协议的成功毋庸置疑。它是 Internet 上大部分信息交换的基础。然而，它也有一些局限性。特别是，它是无状态、单向的协议。请求被发送到 Web 服务器，服务器处理请求并发回一个响应 — 仅此而已。请求必须由客户机发出，而服务器则只能在对请求的响应中发送数据。这至少会影响很多类型的 Web 应用程序的实用性。典型的例子就是聊天程序。另外还有一些例子，例如比赛的比分、股票行&lt;img src=&quot;http://www1.feedsky.com/t1/314389213/wssxy/csdn.net/s.gif?r=http://blog.csdn.net/wssxy/archive/2009/12/25/5073847.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/wssxy/314389213/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/wssxy/314389213/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 25 Dec 2009 11:02:00 +0800</pubDate><author>小陶</author><guid isPermaLink="false">http://blog.csdn.net/wssxy/archive/2009/12/25/5073847.aspx</guid><dc:creator>小陶</dc:creator><fs:srclink>http://blog.csdn.net/wssxy/archive/2009/12/25/5073847.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wssxy/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wssxy/~1147331/314389213/1147318</fs:itemid></item><item><title>mysql中用distinct查询多条不重复记录值 group count</title><link>http://blog.csdn.net/wssxy/archive/2009/12/07/4957929.aspx</link><description>需要查询出某个字段不重复的记录，虽然mysql提供有distinct这个关键字来过滤掉多余的重复记录只保留一条，但往往只用它来返回不重复记 录的条数，而不是用它来返回不重记录的所有值。其原因是distinct只能返回它的目标字段，而无法返回其它字段，这个问题让我困扰了很久，用 distinct不能解决的话，我只有用二重循环查询来解决，而这样对于一个数据量非常大的站来说，无疑是会直接影响到效率的。所以我花了很多时间来研究 这个问题，网上也查不到解决方案，期间把容容拉来帮忙，结果是我们两人都郁闷了。。。。。。。。。 
下面先来看看例子：

table
id name
1 a 
2 b 
3 c 
4 c 
5 b

库结构大概这样，这只是一个简单的例子，实际情况会复杂得多。

比如我想用一条语句查询得到name不重复的所有数据，那就必须使用distinct去掉多余的重复记录。

select distinct name from table
得到的结果是:

name
a
b 
c

好像达到效果了，可是，我想要得到的是id值呢？改一下查询语句&lt;img src=&quot;http://www1.feedsky.com/t1/314389222/wssxy/csdn.net/s.gif?r=http://blog.csdn.net/wssxy/archive/2009/12/07/4957929.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/wssxy/314389222/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/wssxy/314389222/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 07 Dec 2009 16:36:00 +0800</pubDate><author>小陶</author><guid isPermaLink="false">http://blog.csdn.net/wssxy/archive/2009/12/07/4957929.aspx</guid><dc:creator>小陶</dc:creator><fs:srclink>http://blog.csdn.net/wssxy/archive/2009/12/07/4957929.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wssxy/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wssxy/~1147331/314389222/1147318</fs:itemid></item><item><title>清理 LINUX缓存</title><link>http://blog.csdn.net/wssxy/archive/2009/10/21/4709476.aspx</link><description>&lt;br /&gt;sudo sh -c &quot;echo 3 &gt; /proc/sys/vm/drop_caches&quot;&lt;img src=&quot;http://www1.feedsky.com/t1/314389223/wssxy/csdn.net/s.gif?r=http://blog.csdn.net/wssxy/archive/2009/10/21/4709476.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/wssxy/314389223/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/wssxy/314389223/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 21 Oct 2009 17:24:00 +0800</pubDate><author>小陶</author><guid isPermaLink="false">http://blog.csdn.net/wssxy/archive/2009/10/21/4709476.aspx</guid><dc:creator>小陶</dc:creator><fs:srclink>http://blog.csdn.net/wssxy/archive/2009/10/21/4709476.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wssxy/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wssxy/~1147331/314389223/1147318</fs:itemid></item><item><title>mysql输入输出参数存储过程简单使用</title><link>http://blog.csdn.net/wssxy/archive/2009/10/19/4699935.aspx</link><description>&lt;br /&gt;&lt;br /&gt;DROP TABLE IF EXISTS `stuinfo`;&lt;br /&gt;CREATE TABLE `stuinfo` (&lt;br /&gt;`id` int(11) NOT NULL,&lt;br /&gt;`stuName` varchar(255) NOT NULL,&lt;br /&gt;`stuNo` varchar(255) NOT NULL,&lt;br /&gt;`stuSex` varchar(4) NOT NULL,&lt;br /&gt;`stuAge` int(11) NOT NULL,&lt;br /&gt;`stuSeat` int(11) NOT NULL,&lt;br /&gt;`stuAddress` varchar(255) DEFAULT NULL&lt;br /&gt;) ENGINE=InnoDB DEFAULT CHARSET=latin1;&lt;br /&gt;&lt;br /&gt;INSERT INTO `stuinfo` VALUES ('1', 'zhangqiuli', 's25301', 'nan', '18', '1', null);&lt;br /&gt;INSERT INTO `stuinfo` VALUES ('2',&lt;img src=&quot;http://www1.feedsky.com/t1/314389226/wssxy/csdn.net/s.gif?r=http://blog.csdn.net/wssxy/archive/2009/10/19/4699935.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/wssxy/314389226/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/wssxy/314389226/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 19 Oct 2009 19:46:00 +0800</pubDate><author>小陶</author><guid isPermaLink="false">http://blog.csdn.net/wssxy/archive/2009/10/19/4699935.aspx</guid><dc:creator>小陶</dc:creator><fs:srclink>http://blog.csdn.net/wssxy/archive/2009/10/19/4699935.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wssxy/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wssxy/~1147331/314389226/1147318</fs:itemid></item><item><title>Mysql存储过程实例</title><link>http://blog.csdn.net/wssxy/archive/2009/10/19/4699426.aspx</link><description>&lt;br /&gt;千万别忘了&lt;br /&gt;delimiter //  &lt;br /&gt;啊！&lt;br /&gt;&lt;br /&gt;否则要出大事！！&lt;br /&gt;&lt;br /&gt;## **********first test,procedure**********&lt;br /&gt;#&lt;br /&gt;use testprocedure;&lt;br /&gt;delimiter //&lt;br /&gt;&lt;br /&gt;create procedure simpleproce1 (out par1 int)&lt;br /&gt;begin&lt;br /&gt; select count(*) into par1 from proce;&lt;br /&gt;end&lt;br /&gt;//&lt;br /&gt;delimiter ;&lt;br /&gt;call simpleproce1(@a);&lt;br /&gt;select @a;&lt;br /&gt;#,每次只有单一的行可以被取回select id,name into par1,par2 from proce LIMIT 1;中的LIMIT 1;&lt;br /&gt;use testprocedure;&lt;br /&gt;delimiter //&lt;br /&gt;DROP procedu&lt;img src=&quot;http://www1.feedsky.com/t1/314389232/wssxy/csdn.net/s.gif?r=http://blog.csdn.net/wssxy/archive/2009/10/19/4699426.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/wssxy/314389232/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/wssxy/314389232/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 19 Oct 2009 17:41:00 +0800</pubDate><author>小陶</author><guid isPermaLink="false">http://blog.csdn.net/wssxy/archive/2009/10/19/4699426.aspx</guid><dc:creator>小陶</dc:creator><fs:srclink>http://blog.csdn.net/wssxy/archive/2009/10/19/4699426.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wssxy/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wssxy/~1147331/314389232/1147318</fs:itemid></item><item><title>mysql存储过程基本语法和函数</title><link>http://blog.csdn.net/wssxy/archive/2009/10/19/4699335.aspx</link><description>&lt;br /&gt;一.创建存储过程&lt;br /&gt;1.基本语法：&lt;br /&gt;create procedure sp_name(参数[in 参数 数据类型],[out 参数 数据类型]，[inout 参数 数据类型])&lt;br /&gt;begin&lt;br /&gt;………&lt;br /&gt;end&lt;br /&gt;2.参数传递&lt;br /&gt;in表示输入参数，out表示输出参数（参数可以直接写，不带@，例如：in num int）&lt;br /&gt;二.调用存储过程&lt;br /&gt;1.基本语法：call sp_name()&lt;br /&gt;注意：存储过程名称后面必须加括号，哪怕该存储过程没有参数传递&lt;br /&gt;三.删除存储过程&lt;br /&gt;1.基本语法：&lt;br /&gt;drop procedure sp_name//&lt;br /&gt;2.注意事项&lt;br /&gt;(1)不能在一个存储过程中删除另一个存储过程，只能调用另一个存储过程&lt;br /&gt;四.区块，条件，循环&lt;br /&gt;1.区块定义，常用&lt;br /&gt;begin&lt;br /&gt;……&lt;br /&gt;end;&lt;br /&gt;也可以给区块起别名，如：&lt;br /&gt;lable:begin&lt;br /&gt;………..&lt;br /&gt;end lab&lt;img src=&quot;http://www1.feedsky.com/t1/314389239/wssxy/csdn.net/s.gif?r=http://blog.csdn.net/wssxy/archive/2009/10/19/4699335.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/wssxy/314389239/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/wssxy/314389239/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 19 Oct 2009 17:17:00 +0800</pubDate><author>小陶</author><guid isPermaLink="false">http://blog.csdn.net/wssxy/archive/2009/10/19/4699335.aspx</guid><dc:creator>小陶</dc:creator><fs:srclink>http://blog.csdn.net/wssxy/archive/2009/10/19/4699335.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wssxy/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wssxy/~1147331/314389239/1147318</fs:itemid></item><item><title>mysql申明变量以及赋值</title><link>http://blog.csdn.net/wssxy/archive/2009/10/19/4699169.aspx</link><description>局部变量用一个@标识，全局变量用两个@（常用的全局变量一般都是已经定义好的）；申明局部变量语法：declare @变量名 数据类型；例如：declare @num int；赋值：有两种方法式（@num为变量名，value为值）set @num=value;   或   select @num=value;如果想获取查询语句中的一个字段值可以用select给变量赋值,如下：select @num=字段名 from 表名 where ……mysql中变量不用事前申明，在用的时候直接用“@变量名”使用就可以了。第一种用法：set @num=1; 或set @num:=1; //这里要使用变量来保存数据，直接使用@num变量第二种用法：select @num:=1; 或 select @num:=字段名 from 表名 where ……注意上面两种赋值符号，使用set时可以用“=”或“：=”，但是使用select时必须用“：=赋值”&lt;img src=&quot;http://www1.feedsky.com/t1/314389249/wssxy/csdn.net/s.gif?r=http://blog.csdn.net/wssxy/archive/2009/10/19/4699169.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/wssxy/314389249/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/wssxy/314389249/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 19 Oct 2009 16:42:00 +0800</pubDate><author>小陶</author><guid isPermaLink="false">http://blog.csdn.net/wssxy/archive/2009/10/19/4699169.aspx</guid><dc:creator>小陶</dc:creator><fs:srclink>http://blog.csdn.net/wssxy/archive/2009/10/19/4699169.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wssxy/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wssxy/~1147331/314389249/1147318</fs:itemid></item><item><title>Linux操作系统定时任务系统Cron入门</title><link>http://blog.csdn.net/wssxy/archive/2009/06/16/4273745.aspx</link><description>/etc/init.d/cron restart   重启服务 cron是一个linux下的定时执行工具，可以在无需人工干预的情况下运行作业。由于Cron 是Linux的内置服务，但它不自动起来，可以用以下的方法启动、关闭这个服务: 　　/sbin/service crond start //启动服务 　　/sbin/service crond stop //关闭服务 　　/sbin/service crond restart //重启服务 　　/sbin/service crond reload //重新载入配置 　　你也可以将这个服务在系统启动的时候自动启动: 　　在/etc/rc.d/rc.local这个脚本的末尾加上: 　　/sbin/service crond start 　　现在Cron这个服务已经在进程里面了，我们就可以用这个服务了，Cron服&lt;img src=&quot;http://www1.feedsky.com/t1/314389256/wssxy/csdn.net/s.gif?r=http://blog.csdn.net/wssxy/archive/2009/06/16/4273745.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/wssxy/314389256/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/wssxy/314389256/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 16 Jun 2009 16:29:00 +0800</pubDate><author>小陶</author><guid isPermaLink="false">http://blog.csdn.net/wssxy/archive/2009/06/16/4273745.aspx</guid><dc:creator>小陶</dc:creator><fs:srclink>http://blog.csdn.net/wssxy/archive/2009/06/16/4273745.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wssxy/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wssxy/~1147331/314389256/1147318</fs:itemid></item><item><title>input   type=&quot;text&quot;  和 img对齐</title><link>http://blog.csdn.net/wssxy/archive/2009/06/10/4257246.aspx</link><description>&lt;br /&gt;总是忘，还是记下来吧。&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;关键是  和 style=&quot;vertical-align:   bottom&quot;&lt;img src=&quot;http://www1.feedsky.com/t1/314389261/wssxy/csdn.net/s.gif?r=http://blog.csdn.net/wssxy/archive/2009/06/10/4257246.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/wssxy/314389261/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/wssxy/314389261/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 10 Jun 2009 13:02:00 +0800</pubDate><author>小陶</author><guid isPermaLink="false">http://blog.csdn.net/wssxy/archive/2009/06/10/4257246.aspx</guid><dc:creator>小陶</dc:creator><fs:srclink>http://blog.csdn.net/wssxy/archive/2009/06/10/4257246.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wssxy/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wssxy/~1147331/314389261/1147318</fs:itemid></item><item><title>ubuntu远程桌面</title><link>http://blog.csdn.net/wssxy/archive/2009/06/08/4251422.aspx</link><description>&lt;br /&gt;最近一直在用putty+pagent远程登录ubuntu，用命令行来操作和配置Ubuntu系统。&lt;br /&gt;不过老是觉得缺少了什么，觉得图形界面也不错，特别是安装了ubuntu-joES以后，想法更是强烈。&lt;br /&gt;&lt;br /&gt;以前的时候，可以在putty+xming来运行图形界面的程序，但是字体比较小。&lt;br /&gt;看了一下，可以用VNC来远程操纵ubuntu界面。&lt;br /&gt;我试用了两种VNC服务器软件：vnc4server和vncserver，客户端使用ultravnc，当然也可以使用tightvnc等其他的VNC客户端软件。&lt;br /&gt;&lt;br /&gt;VNC4Server篇&lt;br /&gt;服务器：&lt;br /&gt;vnc4server-免费软件，可以从源里面找到。&lt;br /&gt;sudo apt-get install vnc4server&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;客户端：&lt;br /&gt;UltraVNC for Windows&lt;br /&gt;也是一个免费软件。UltraVNC包含Server和Client，不过我只安装了Client.&lt;br /&gt;特别值得一提的是，这个软件的插件里&lt;img src=&quot;http://www1.feedsky.com/t1/314389270/wssxy/csdn.net/s.gif?r=http://blog.csdn.net/wssxy/archive/2009/06/08/4251422.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/wssxy/314389270/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/wssxy/314389270/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 08 Jun 2009 14:03:00 +0800</pubDate><author>小陶</author><guid isPermaLink="false">http://blog.csdn.net/wssxy/archive/2009/06/08/4251422.aspx</guid><dc:creator>小陶</dc:creator><fs:srclink>http://blog.csdn.net/wssxy/archive/2009/06/08/4251422.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wssxy/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wssxy/~1147331/314389270/1147318</fs:itemid></item></channel></rss>