<?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/wallimn" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/wallimn" type="application/rss+xml"></fs:self_link><lastBuildDate>Mon, 23 Mar 2009 23:55:00 GMT</lastBuildDate><title>隔壁老王的博客</title><description>-=☆开发手记☆=-</description><link>http://blog.csdn.net/wallimn/</link><item><title>博客转移至：wallimn.javaeye.com，欢迎新老朋友支持</title><link>http://blog.csdn.net/wallimn/archive/2009/03/23/4018781.aspx</link><wfw:comment>http://blog.csdn.net/wallimn/comments/4018781.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/wallimn/comments/commentRss/4018781.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4018781</trackback:ping><description>　　这个博客暂时停止维护，以后主要维护javaeye上的博客，地址为：http://wallimn.javaeye.com。欢迎新老朋友支持。网络硬盘地址不变：http://wallimn.ys168.com&lt;img src =&quot;http://blog.csdn.net/wallimn/aggbug/4018781.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 24 Mar 2009 07:55:00 +0800</pubDate><author>隔壁老王</author><comments>http://blog.csdn.net/wallimn/archive/2009/03/23/4018781.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/wallimn/archive/2009/03/23/4018781.aspx</guid><dc:creator>隔壁老王</dc:creator><fs:srclink>http://blog.csdn.net/wallimn/archive/2009/03/23/4018781.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wallimn/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wallimn/~1181836/212367905/1181817</fs:itemid></item><item><title>JAVA正则表达式根据查询SQL自动生成统计SQL</title><link>http://blog.csdn.net/wallimn/archive/2009/02/05/3864030.aspx</link><wfw:comment>http://blog.csdn.net/wallimn/comments/3864030.aspx</wfw:comment><slash:comments>3</slash:comments><wfw:commentRss>http://blog.csdn.net/wallimn/comments/commentRss/3864030.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3864030</trackback:ping><description>　　JAVA的JDBC，对于取出的来结果集好象不能直接取到结果集的数量，要使用一个计数器，不停的next()，一直到结束。这样才得到数量。　　这样的效率对于大量记录而言显然是不能忍受的。最近用了几次正则表达式，让我想到一个办法，可以使用正则表达式动态的根据SQL语句，自动的将形如 select name,sex from tableName的查询语句转换成select count(*) from tableName这样的SQL统计语句。大家知道，正则表达式有查找、替换功能，这正是完成这样任务所需要的。&lt;img src =&quot;http://blog.csdn.net/wallimn/aggbug/3864030.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 05 Feb 2009 21:12:00 +0800</pubDate><author>隔壁老王</author><comments>http://blog.csdn.net/wallimn/archive/2009/02/05/3864030.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/wallimn/archive/2009/02/05/3864030.aspx</guid><dc:creator>隔壁老王</dc:creator><fs:srclink>http://blog.csdn.net/wallimn/archive/2009/02/05/3864030.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wallimn/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wallimn/~1181836/212367906/1181817</fs:itemid></item><item><title>自己动手用JAVA编写JSON工具类</title><link>http://blog.csdn.net/wallimn/archive/2009/02/03/3861083.aspx</link><wfw:comment>http://blog.csdn.net/wallimn/comments/3861083.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/wallimn/comments/commentRss/3861083.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3861083</trackback:ping><description>json是javascript使用的轻便的数据交换形式。采用Ajax技术，使用JSON来交换数据，最近用了一下这种方式，真是不错，比以前使用 XML格式方便多了。少去了服务器端使用jdom，dom4j等jar包创建XML数据的过程，在客户端也不再需要使用那极其难用的COM API来解析XML。　　客户端使用javascript解析满足json格式要求的字符串，十分容易，只要使用eval函数就可以了。不过有个技巧，就是要在字符串两端加上括号。&lt;img src =&quot;http://blog.csdn.net/wallimn/aggbug/3861083.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 04 Feb 2009 05:23:00 +0800</pubDate><author>隔壁老王</author><comments>http://blog.csdn.net/wallimn/archive/2009/02/03/3861083.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/wallimn/archive/2009/02/03/3861083.aspx</guid><dc:creator>隔壁老王</dc:creator><fs:srclink>http://blog.csdn.net/wallimn/archive/2009/02/03/3861083.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wallimn/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wallimn/~1181836/212367907/1181817</fs:itemid></item><item><title>如何配置JSTL使用Proxool数据库连接池</title><link>http://blog.csdn.net/wallimn/archive/2009/01/31/3855609.aspx</link><wfw:comment>http://blog.csdn.net/wallimn/comments/3855609.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/wallimn/comments/commentRss/3855609.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3855609</trackback:ping><description>　　以前一直使用tomcat原配的那个连接池，好象叫作dbcp，效率怎么样没有深究，关键是配置比较方便，也不用额外下载jar包。
　　最近听说Proxool可能、也许、好象比较好一点。就决定拿来研究一下。我比较喜欢使用JSTL的SQL标签，因此本文介绍一下JSTL与Proxool结合使用的方法。共分三个步骤，应用服务器选用tomcat，其它应用服务器应该也是一样的，不过我没有研究过。&lt;img src =&quot;http://blog.csdn.net/wallimn/aggbug/3855609.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 01 Feb 2009 00:12:00 +0800</pubDate><author>隔壁老王</author><comments>http://blog.csdn.net/wallimn/archive/2009/01/31/3855609.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/wallimn/archive/2009/01/31/3855609.aspx</guid><dc:creator>隔壁老王</dc:creator><fs:srclink>http://blog.csdn.net/wallimn/archive/2009/01/31/3855609.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wallimn/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wallimn/~1181836/212367908/1181817</fs:itemid></item><item><title>使用Display标签对大量数据使用外部排序实例(二)</title><link>http://blog.csdn.net/wallimn/archive/2009/01/31/3855508.aspx</link><wfw:comment>http://blog.csdn.net/wallimn/comments/3855508.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/wallimn/comments/commentRss/3855508.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3855508</trackback:ping><description>再把在JSP页面上使用Display的使用方式介绍一下吧，也就是介绍一下如何使用外部排序与分页(External Paging and Sorting)。&lt;img src =&quot;http://blog.csdn.net/wallimn/aggbug/3855508.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 31 Jan 2009 21:32:00 +0800</pubDate><author>隔壁老王</author><comments>http://blog.csdn.net/wallimn/archive/2009/01/31/3855508.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/wallimn/archive/2009/01/31/3855508.aspx</guid><dc:creator>隔壁老王</dc:creator><fs:srclink>http://blog.csdn.net/wallimn/archive/2009/01/31/3855508.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wallimn/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wallimn/~1181836/212367909/1181817</fs:itemid></item><item><title>使用Display标签对大量数据使用外部排序实例(一)</title><link>http://blog.csdn.net/wallimn/archive/2009/01/31/3855506.aspx</link><wfw:comment>http://blog.csdn.net/wallimn/comments/3855506.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/wallimn/comments/commentRss/3855506.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3855506</trackback:ping><description>使用Display标签对大量数据使用外部排序实例，我结合我的应用环境（jdk 1.5、Oracle92i、tomcat5.5）试验了一下，果然很容易，实现标签要求的接口----PaginatedList，写一句分页的SQL（使用ROWNUM，大家都知道吧），将数据取出来交给标签来显示就可以了。为了让朋友更容易，我把代码贴出来。由于这个类与数据库操作类有些藕合，所以这个代码并不能运行，相关函数我进行了适当的注释，仅能用来演示实现思路。&lt;img src =&quot;http://blog.csdn.net/wallimn/aggbug/3855506.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 31 Jan 2009 21:28:00 +0800</pubDate><author>隔壁老王</author><comments>http://blog.csdn.net/wallimn/archive/2009/01/31/3855506.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/wallimn/archive/2009/01/31/3855506.aspx</guid><dc:creator>隔壁老王</dc:creator><fs:srclink>http://blog.csdn.net/wallimn/archive/2009/01/31/3855506.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wallimn/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wallimn/~1181836/212367910/1181817</fs:itemid></item><item><title>《 千字文》</title><link>http://blog.csdn.net/wallimn/archive/2009/01/18/3831736.aspx</link><wfw:comment>http://blog.csdn.net/wallimn/comments/3831736.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/wallimn/comments/commentRss/3831736.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3831736</trackback:ping><description>千字文，经典得不能再经典的东东了。网上找来的文章，写得很全，准备经常读给我家小孩听。
建议网友也试试呀。&lt;img src =&quot;http://blog.csdn.net/wallimn/aggbug/3831736.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 19 Jan 2009 06:29:00 +0800</pubDate><author>隔壁老王</author><comments>http://blog.csdn.net/wallimn/archive/2009/01/18/3831736.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/wallimn/archive/2009/01/18/3831736.aspx</guid><dc:creator>隔壁老王</dc:creator><fs:srclink>http://blog.csdn.net/wallimn/archive/2009/01/18/3831736.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wallimn/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wallimn/~1181836/212367911/1181817</fs:itemid></item><item><title>豆豆满月了[图](四)</title><link>http://blog.csdn.net/wallimn/archive/2009/01/18/3827617.aspx</link><wfw:comment>http://blog.csdn.net/wallimn/comments/3827617.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/wallimn/comments/commentRss/3827617.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3827617</trackback:ping><description>豆豆满月了[图]私人照片，请勿转载&lt;img src =&quot;http://blog.csdn.net/wallimn/aggbug/3827617.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 18 Jan 2009 22:52:00 +0800</pubDate><author>隔壁老王</author><comments>http://blog.csdn.net/wallimn/archive/2009/01/18/3827617.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/wallimn/archive/2009/01/18/3827617.aspx</guid><dc:creator>隔壁老王</dc:creator><fs:srclink>http://blog.csdn.net/wallimn/archive/2009/01/18/3827617.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wallimn/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wallimn/~1181836/212367912/1181817</fs:itemid></item><item><title>豆豆满月了[图](三)</title><link>http://blog.csdn.net/wallimn/archive/2009/01/18/3827613.aspx</link><wfw:comment>http://blog.csdn.net/wallimn/comments/3827613.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/wallimn/comments/commentRss/3827613.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3827613</trackback:ping><description>豆豆满月了[图]私人照片，请勿转载&lt;img src =&quot;http://blog.csdn.net/wallimn/aggbug/3827613.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 18 Jan 2009 22:51:00 +0800</pubDate><author>隔壁老王</author><comments>http://blog.csdn.net/wallimn/archive/2009/01/18/3827613.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/wallimn/archive/2009/01/18/3827613.aspx</guid><dc:creator>隔壁老王</dc:creator><fs:srclink>http://blog.csdn.net/wallimn/archive/2009/01/18/3827613.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wallimn/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wallimn/~1181836/212367913/1181817</fs:itemid></item><item><title>豆豆满月了[图](二)</title><link>http://blog.csdn.net/wallimn/archive/2009/01/18/3827603.aspx</link><wfw:comment>http://blog.csdn.net/wallimn/comments/3827603.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/wallimn/comments/commentRss/3827603.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3827603</trackback:ping><description>豆豆满月了[图]私人照片，请勿转载&lt;img src =&quot;http://blog.csdn.net/wallimn/aggbug/3827603.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 18 Jan 2009 22:48:00 +0800</pubDate><author>隔壁老王</author><comments>http://blog.csdn.net/wallimn/archive/2009/01/18/3827603.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/wallimn/archive/2009/01/18/3827603.aspx</guid><dc:creator>隔壁老王</dc:creator><fs:srclink>http://blog.csdn.net/wallimn/archive/2009/01/18/3827603.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/wallimn/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/wallimn/~1181836/212367914/1181817</fs:itemid></item></channel></rss>