<?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/cxc3980" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/cxc3980" type="application/rss+xml"></fs:self_link><lastBuildDate>Mon, 09 Mar 2009 15:15:00 GMT</lastBuildDate><title>cxc3980的专栏</title><description>寻找自己的发展之路</description><link>http://blog.csdn.net/cxc3980/</link><item><title>Struts2.0页面跳转css无效问题的解决方法</title><link>http://blog.csdn.net/cxc3980/archive/2009/03/09/3973324.aspx</link><wfw:comment>http://blog.csdn.net/cxc3980/comments/3973324.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cxc3980/comments/commentRss/3973324.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3973324</trackback:ping><description>Struts2.0页面跳转css无效问题的解决方法&lt;img src =&quot;http://blog.csdn.net/cxc3980/aggbug/3973324.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 09 Mar 2009 23:15:00 +0800</pubDate><author>lazer</author><comments>http://blog.csdn.net/cxc3980/archive/2009/03/09/3973324.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/cxc3980/archive/2009/03/09/3973324.aspx</guid><dc:creator>lazer</dc:creator></item><item><title>Resource /xxxx does not exist的问题</title><link>http://blog.csdn.net/cxc3980/archive/2009/02/27/3942821.aspx</link><wfw:comment>http://blog.csdn.net/cxc3980/comments/3942821.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cxc3980/comments/commentRss/3942821.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3942821</trackback:ping><description>&lt;br /&gt;昨天在项目的文件夹下面直接删除了几个jar文件，回来再运行项目竟然提示Resource /xxx dees not exist.分析了一下原因，应该是由于在外面把某个jar删掉，eclipse还不知道，发布web程序的时候以为那个jar还在，于是就把它发布出去，但那个文件不存在，所以就报错。&lt;br /&gt;解决方法很简单，把整个项目刷新一下就OK了。&lt;br /&gt;得到的一点教训就是尽量少在外面删除jar文件，最好在web library下面删；如果在外面删除了，一定记得要刷新一下项目。&lt;img src =&quot;http://blog.csdn.net/cxc3980/aggbug/3942821.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 27 Feb 2009 23:14:00 +0800</pubDate><author>lazer</author><comments>http://blog.csdn.net/cxc3980/archive/2009/02/27/3942821.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/cxc3980/archive/2009/02/27/3942821.aspx</guid><dc:creator>lazer</dc:creator></item><item><title>追加mysql中字段的值</title><link>http://blog.csdn.net/cxc3980/archive/2008/12/18/3549589.aspx</link><wfw:comment>http://blog.csdn.net/cxc3980/comments/3549589.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cxc3980/comments/commentRss/3549589.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3549589</trackback:ping><description>&lt;br /&gt;update 表名 set 字段名 concat(字段名,&quot;append string&quot;) where 字段=条件。CONCAT(str1,str2,...)返回来自于参数连结的字符串。如果任何参数是NULL，返回NULL。可以有超过2个的参数。一个数字参数被变换为等价的字符串形式。 mysql&gt; select CONCAT('My', 'S', 'QL');
        -&gt; 'MySQL'
mysql&gt; select CONCAT('My', NULL, 'QL');
        -&gt; NULL
mysql&gt; select CONCAT(14.3);
        -&gt; '14.3'
&lt;br /&gt; 附加mysql中与stirng相关的一些函数：ASCII(str)返回字符串str的最左面字符的ASCII代码值。如果str是空字符串，返回0。如果str是NULL，返回NULL。 mysql&gt; select ASCII('2');
        -&gt; 50
mysql&gt; select ASCII(2);
        -&gt; 50
mysql&lt;img src =&quot;http://blog.csdn.net/cxc3980/aggbug/3549589.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 18 Dec 2008 22:18:00 +0800</pubDate><author>lazer</author><comments>http://blog.csdn.net/cxc3980/archive/2008/12/18/3549589.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/cxc3980/archive/2008/12/18/3549589.aspx</guid><dc:creator>lazer</dc:creator></item><item><title>java反射机制的简单实现步骤</title><link>http://blog.csdn.net/cxc3980/archive/2008/11/11/3275805.aspx</link><wfw:comment>http://blog.csdn.net/cxc3980/comments/3275805.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cxc3980/comments/commentRss/3275805.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3275805</trackback:ping><description>&lt;br /&gt;获得某个类的所对应的Class对象的三种方法&lt;br /&gt;1.通过类的.class语法。&lt;br /&gt;2.通过类的getClass方法&lt;br /&gt;3.通过Class类的静态方法forName()&lt;br /&gt;通过反射方式来调用某个对象方法的步骤&lt;br /&gt;1.得到该对象所对应的Class对象&lt;br /&gt;2.通过该Class对象得到该类的构造方法所对应的Constructor对象&lt;br /&gt;3.通过该Constructor对象的newInstance方法得到该类的一个实例（对象）&lt;br /&gt;4.通过该Class对象得到该方法所对应的Method对象&lt;br /&gt;5.通过该Method对象的invoke方法进行调用&lt;img src =&quot;http://blog.csdn.net/cxc3980/aggbug/3275805.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 11 Nov 2008 21:13:00 +0800</pubDate><author>lazer</author><comments>http://blog.csdn.net/cxc3980/archive/2008/11/11/3275805.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/cxc3980/archive/2008/11/11/3275805.aspx</guid><dc:creator>lazer</dc:creator></item><item><title>数据库设计三大范式应用实例剖析</title><link>http://blog.csdn.net/cxc3980/archive/2008/11/11/3275781.aspx</link><wfw:comment>http://blog.csdn.net/cxc3980/comments/3275781.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cxc3980/comments/commentRss/3275781.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3275781</trackback:ping><description>引言　　数据库的设计范式是数据库设计所需要满足的规范，满足这些规范的数据库是简洁的、结构明晰的，同时，不会发生插入（insert）、删除（delete）和更新（update）操作异常。反之则是乱七八糟，不仅给数据库的编程人员制造麻烦，而且面目可憎，可能存储了大量不需要的冗余信息。　　设计范式是不是很难懂呢？非也，大学教材上给我们一堆数学公式我们当然看不懂，也记不住。所以我们很多人就根本不按照范式来设计数据库。　　实质上，设计范式用很形象、很简洁的话语就能说清楚，道明白。本文将对范式进行通俗地说明，并以笔者曾经设计的一个简单论坛的数据库为例来讲解怎样将这些范式应用于实际工程。　　范式说明　　第一范式（1NF）：数据库表中的字段都是单一属性的，不可再分。这个单一属性由基本类型构成，包括整型、实数、字符型、逻辑型、日期型等。　　例如，如下的数据库表是符合第一范式的：字段1 字段2 字段3 字段4    &lt;img src =&quot;http://blog.csdn.net/cxc3980/aggbug/3275781.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 11 Nov 2008 21:10:00 +0800</pubDate><author>lazer</author><comments>http://blog.csdn.net/cxc3980/archive/2008/11/11/3275781.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/cxc3980/archive/2008/11/11/3275781.aspx</guid><dc:creator>lazer</dc:creator></item><item><title>删除mysql根用户的密码</title><link>http://blog.csdn.net/cxc3980/archive/2008/09/22/2963978.aspx</link><wfw:comment>http://blog.csdn.net/cxc3980/comments/2963978.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cxc3980/comments/commentRss/2963978.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2963978</trackback:ping><description>mysql&gt; GRANT USAGE ON *.* TO root@localhost IDENTIFIED BY '';&lt;img src =&quot;http://blog.csdn.net/cxc3980/aggbug/2963978.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 23 Sep 2008 07:39:00 +0800</pubDate><author>lazer</author><comments>http://blog.csdn.net/cxc3980/archive/2008/09/22/2963978.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/cxc3980/archive/2008/09/22/2963978.aspx</guid><dc:creator>lazer</dc:creator></item><item><title>struts2下的“Exception starting filter struts2”错误的问题</title><link>http://blog.csdn.net/cxc3980/archive/2008/04/09/2269819.aspx</link><wfw:comment>http://blog.csdn.net/cxc3980/comments/2269819.aspx</wfw:comment><slash:comments>9</slash:comments><wfw:commentRss>http://blog.csdn.net/cxc3980/comments/commentRss/2269819.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2269819</trackback:ping><description>struts2下的“Exception starting filter struts2”错误的解决方法&lt;img src =&quot;http://blog.csdn.net/cxc3980/aggbug/2269819.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 09 Apr 2008 21:42:00 +0800</pubDate><author>lazer</author><comments>http://blog.csdn.net/cxc3980/archive/2008/04/09/2269819.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/cxc3980/archive/2008/04/09/2269819.aspx</guid><dc:creator>lazer</dc:creator></item><item><title>利用javascript操作页面节点</title><link>http://blog.csdn.net/cxc3980/archive/2008/04/03/2246632.aspx</link><wfw:comment>http://blog.csdn.net/cxc3980/comments/2246632.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cxc3980/comments/commentRss/2246632.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2246632</trackback:ping><description>使用javascript来访问 删除 增加节点&lt;img src =&quot;http://blog.csdn.net/cxc3980/aggbug/2246632.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 03 Apr 2008 19:03:00 +0800</pubDate><author>lazer</author><comments>http://blog.csdn.net/cxc3980/archive/2008/04/03/2246632.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/cxc3980/archive/2008/04/03/2246632.aspx</guid><dc:creator>lazer</dc:creator></item><item><title>CSS对IE7，IE6，FireFox和其它不同浏览器的控制——CSS设计中的HACK，CSS解决方案</title><link>http://blog.csdn.net/cxc3980/archive/2008/03/27/2223693.aspx</link><wfw:comment>http://blog.csdn.net/cxc3980/comments/2223693.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/cxc3980/comments/commentRss/2223693.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2223693</trackback:ping><description>还在为不同浏览器下的显示效果发愁吗？看看吧！&lt;img src =&quot;http://blog.csdn.net/cxc3980/aggbug/2223693.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 28 Mar 2008 01:51:00 +0800</pubDate><author>lazer</author><comments>http://blog.csdn.net/cxc3980/archive/2008/03/27/2223693.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/cxc3980/archive/2008/03/27/2223693.aspx</guid><dc:creator>lazer</dc:creator></item><item><title>CSS中的选择器</title><link>http://blog.csdn.net/cxc3980/archive/2008/03/26/2219847.aspx</link><wfw:comment>http://blog.csdn.net/cxc3980/comments/2219847.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cxc3980/comments/commentRss/2219847.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2219847</trackback:ping><description>css中比较常用的主要有群选择器，派生选择器，id选择器，类别选择器几种，主要用法分别如下：&lt;img src =&quot;http://blog.csdn.net/cxc3980/aggbug/2219847.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 26 Mar 2008 21:27:00 +0800</pubDate><author>lazer</author><comments>http://blog.csdn.net/cxc3980/archive/2008/03/26/2219847.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/cxc3980/archive/2008/03/26/2219847.aspx</guid><dc:creator>lazer</dc:creator></item></channel></rss>