<?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/rkind" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/rkind" type="application/rss+xml"></fs:self_link><lastBuildDate>Mon, 24 Oct 2005 09:37:00 GMT</lastBuildDate><title>rkind的专栏</title><description>知人者智  自知者明</description><link>http://blog.csdn.net/rkind/</link><item><title>Java框架研究——JSF与Struts的异同 [转自赛迪网]</title><link>http://blog.csdn.net/rkind/archive/2005/10/24/514458.aspx</link><wfw:comment>http://blog.csdn.net/rkind/comments/514458.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/rkind/comments/commentRss/514458.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=514458</trackback:ping><description>Struts和JSF/Tapestry都属于表现层框架，这两种分属不同性质的框架，后者是一种事件驱动型的组件模型，而Struts只是单纯的MVC模式框架，老外总是急吼吼说事件驱动型就比MVC模式框架好，何以见得，我们下面进行详细分析比较一下到底是怎么回事？&lt;img src =&quot;http://blog.csdn.net/rkind/aggbug/514458.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 24 Oct 2005 17:37:00 +0800</pubDate><author>rkind</author><comments>http://blog.csdn.net/rkind/archive/2005/10/24/514458.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/rkind/archive/2005/10/24/514458.aspx</guid><dc:creator>rkind</dc:creator></item><item><title>MySQL_常用查询的例子</title><link>http://blog.csdn.net/rkind/archive/2005/10/21/510931.aspx</link><wfw:comment>http://blog.csdn.net/rkind/comments/510931.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/rkind/comments/commentRss/510931.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=510931</trackback:ping><description>下面是一些学习如何用MySQL解决一些常见问题的例子。
　　
　　一些例子使用数据库表“shop”，包含某个商人的每篇文章(物品号)的价格。假定每个商人的每篇文章有一个单独的固定价格，那么(物品，商人)是记录的主键。 
　　
　　你能这样创建例子数据库表： 
　　CREATE TABLE shop (
　　article INT(4) UNSIGNED ZEROFILL DEFAULT '0000' NOT NULL,
　　dealer　CHAR(20)　　　　　　　　 DEFAULT ''　　 NOT NULL,
　　price　 DOUBLE(16,2)　　　　　　 DEFAULT '0.00' NOT NULL,
　　PRIMARY KEY(article, dealer));
　　
　　INSERT INTO shop VALUES
　　(1,'A',3.45),(1,'B',3.99),(2,'A',10.99),(3,'B',1.45),(3,'C',1.69),
　　(3,'D',1.25),(4,'D',19.95);
　　
　　好了，例&lt;img src =&quot;http://blog.csdn.net/rkind/aggbug/510931.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 21 Oct 2005 22:20:00 +0800</pubDate><author>rkind</author><comments>http://blog.csdn.net/rkind/archive/2005/10/21/510931.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/rkind/archive/2005/10/21/510931.aspx</guid><dc:creator>rkind</dc:creator></item><item><title>Struts常见错误汇总</title><link>http://blog.csdn.net/rkind/archive/2005/10/21/510599.aspx</link><wfw:comment>http://blog.csdn.net/rkind/comments/510599.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/rkind/comments/commentRss/510599.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=510599</trackback:ping><description>以下所说的struts-config.xml和ApplicationResources.properties等文件名是缺省时使用的，如果你使用了多模块，或指定了不同的资源文件名称，这些名字要做相应的修改。&lt;img src =&quot;http://blog.csdn.net/rkind/aggbug/510599.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 21 Oct 2005 17:03:00 +0800</pubDate><author>rkind</author><comments>http://blog.csdn.net/rkind/archive/2005/10/21/510599.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/rkind/archive/2005/10/21/510599.aspx</guid><dc:creator>rkind</dc:creator></item><item><title>Jbuilder2006中使用1.5以下JDK的解决方法 [转]</title><link>http://blog.csdn.net/rkind/archive/2005/10/18/508529.aspx</link><wfw:comment>http://blog.csdn.net/rkind/comments/508529.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/rkind/comments/commentRss/508529.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=508529</trackback:ping><description>Jbuilder2006中使用1.5以下JDK的解决方法 &lt;img src =&quot;http://blog.csdn.net/rkind/aggbug/508529.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 18 Oct 2005 23:30:00 +0800</pubDate><author>rkind</author><comments>http://blog.csdn.net/rkind/archive/2005/10/18/508529.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/rkind/archive/2005/10/18/508529.aspx</guid><dc:creator>rkind</dc:creator></item><item><title>摄影构图的基本要领!</title><link>http://blog.csdn.net/rkind/archive/2005/09/28/491270.aspx</link><wfw:comment>http://blog.csdn.net/rkind/comments/491270.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/rkind/comments/commentRss/491270.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=491270</trackback:ping><description>ss&lt;img src =&quot;http://blog.csdn.net/rkind/aggbug/491270.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 28 Sep 2005 20:37:00 +0800</pubDate><author>rkind</author><comments>http://blog.csdn.net/rkind/archive/2005/09/28/491270.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/rkind/archive/2005/09/28/491270.aspx</guid><dc:creator>rkind</dc:creator></item><item><title>色彩物理理论：色彩的种类与基本特性</title><link>http://blog.csdn.net/rkind/archive/2005/09/28/491266.aspx</link><wfw:comment>http://blog.csdn.net/rkind/comments/491266.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/rkind/comments/commentRss/491266.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=491266</trackback:ping><description>　丰富多样的颜色可以分成两个大类无彩色系和有彩色系： 

&lt;img src =&quot;http://blog.csdn.net/rkind/aggbug/491266.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 28 Sep 2005 20:32:00 +0800</pubDate><author>rkind</author><comments>http://blog.csdn.net/rkind/archive/2005/09/28/491266.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/rkind/archive/2005/09/28/491266.aspx</guid><dc:creator>rkind</dc:creator></item><item><title>谨以此文献给才毕业1--5年的朋友【推荐】转</title><link>http://blog.csdn.net/rkind/archive/2005/09/26/489685.aspx</link><wfw:comment>http://blog.csdn.net/rkind/comments/489685.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/rkind/comments/commentRss/489685.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=489685</trackback:ping><description>谨以此文献给才毕业1--5年的朋友【推荐】&lt;img src =&quot;http://blog.csdn.net/rkind/aggbug/489685.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 26 Sep 2005 21:36:00 +0800</pubDate><author>rkind</author><comments>http://blog.csdn.net/rkind/archive/2005/09/26/489685.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/rkind/archive/2005/09/26/489685.aspx</guid><dc:creator>rkind</dc:creator></item><item><title>解决Win2000Sever登录时“不支持网络请求，系统无法让您登陆”问题</title><link>http://blog.csdn.net/rkind/archive/2005/09/16/482030.aspx</link><wfw:comment>http://blog.csdn.net/rkind/comments/482030.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/rkind/comments/commentRss/482030.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=482030</trackback:ping><description>解决Win2000Sever登录时“不支持网络请求，系统无法让您登陆”问题&lt;img src =&quot;http://blog.csdn.net/rkind/aggbug/482030.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 16 Sep 2005 18:15:00 +0800</pubDate><author>rkind</author><comments>http://blog.csdn.net/rkind/archive/2005/09/16/482030.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/rkind/archive/2005/09/16/482030.aspx</guid><dc:creator>rkind</dc:creator></item><item><title>为你的CD Walkman找到另一半 耳塞（耳机）乱点鸳鸯谱</title><link>http://blog.csdn.net/rkind/archive/2005/09/05/471626.aspx</link><wfw:comment>http://blog.csdn.net/rkind/comments/471626.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/rkind/comments/commentRss/471626.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=471626</trackback:ping><description>为你的CD Walkman找到另一半 耳塞（耳机）乱点鸳鸯谱 &lt;img src =&quot;http://blog.csdn.net/rkind/aggbug/471626.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 05 Sep 2005 20:39:00 +0800</pubDate><author>rkind</author><comments>http://blog.csdn.net/rkind/archive/2005/09/05/471626.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/rkind/archive/2005/09/05/471626.aspx</guid><dc:creator>rkind</dc:creator></item><item><title>关于充电电池权威评论</title><link>http://blog.csdn.net/rkind/archive/2005/08/15/455281.aspx</link><wfw:comment>http://blog.csdn.net/rkind/comments/455281.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/rkind/comments/commentRss/455281.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=455281</trackback:ping><description>１．认识记忆效应 
２．电池需要激活吗 
３．前三次要充１２小时吗 
４．充电电池有最佳状态吗 
５．真的是充电电流越大，充电越快吗 
６．直充标的输出电流就等于充电电流吗 
７．循环充放电一次就是少一次寿命吗 
８．电池容量越高越好吗 
９．充饱的电池进行存储好吗 
１０．座充的绿灯亮了以后在多充一个小时有用吗 
１１．座充充电比直充饱吗 &lt;img src =&quot;http://blog.csdn.net/rkind/aggbug/455281.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 16 Aug 2005 04:37:00 +0800</pubDate><author>rkind</author><comments>http://blog.csdn.net/rkind/archive/2005/08/15/455281.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/rkind/archive/2005/08/15/455281.aspx</guid><dc:creator>rkind</dc:creator></item></channel></rss>
