<?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/akunshenjk" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/akunshenjk" type="application/rss+xml"></fs:self_link><lastBuildDate>Sun, 31 May 2009 11:02:00 GMT</lastBuildDate><title>阿坤的BLOG</title><description>天地生人,有一人应有一人之业;人生在世,生一日当尽一日之勤</description><link>http://blog.csdn.net/akunshenjk/</link><item><title>CSS资料集：IE8 CSS hack</title><link>http://blog.csdn.net/akunshenjk/archive/2009/05/31/4227631.aspx</link><wfw:comment>http://blog.csdn.net/akunshenjk/comments/4227631.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/akunshenjk/comments/commentRss/4227631.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4227631</trackback:ping><description>CSS兼容性一直是大家头疼的问题，IE6、IE7和FF已经让大家够呛，在52CSS.com以前的文章中，很多这方面的知识介绍。今天向大家介绍IE8的CSS hack。IE8正式版发布以来,一直在找一种区别IE8正式版的方法.在百度搜索&quot;IE8 hack&quot;有19万多个结果,google搜索则有243万多个结 果,但几乎没有看到任何一种有效的方法是针对IE8正式版的,要知道IE8正式版和测试版在hack上是有很大区别的.而且网络上的方法几乎都是出自一两 个人之手,最有名的可能要数那张linxz.cn的hack图片了,这张图片估计被国内的网友转载了几十万次,但目前这张图里的方法对IE8正式版是无效 的.经过分析和总结网友们的各个无效方法,有了下面的行之有效的解决方案,或许以后还会有更好更简单的hack,但就目前来说这个方法可以解决燃眉之急.不再讲废话,来(以下的IE8均指IE8正式版,版本号:8.0.6001.18702):w.52css.com]&quot;\9&quot;　例:&quot;margin:0px auto\9;&quot;.这里的&quot;\9&quot;可以区别所有IE&lt;img src =&quot;http://blog.csdn.net/akunshenjk/aggbug/4227631.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/225386848/akunshenjk/csdn.net/s.gif?r=http://blog.csdn.net/akunshenjk/archive/2009/05/31/4227631.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/akunshenjk/225386848/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/akunshenjk/225386848/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 31 May 2009 19:02:00 +0800</pubDate><author>阿坤</author><comments>http://blog.csdn.net/akunshenjk/archive/2009/05/31/4227631.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/akunshenjk/archive/2009/05/31/4227631.aspx</guid><dc:creator>阿坤</dc:creator><fs:srclink>http://blog.csdn.net/akunshenjk/archive/2009/05/31/4227631.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/akunshenjk/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/akunshenjk/~1151865/225386848/1151852</fs:itemid></item><item><title>javascript string to date</title><link>http://blog.csdn.net/akunshenjk/archive/2009/04/30/4140316.aspx</link><wfw:comment>http://blog.csdn.net/akunshenjk/comments/4140316.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/akunshenjk/comments/commentRss/4140316.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4140316</trackback:ping><description>toDate:function(format){
        var str=this;
        if(str.trim().isEmpty())return null;
        var f=format || 'yyyy-MM-dd';
        var y4='([0-9]{4})';var y2='([0-9]{2})';var yi=-1;
        var M2='(0[1-9]|1[0-2])';var M1='([1-9]|1[0-2])';var Mi=-1;
        var d2 = '(0[1-9]|[1-2][0-9]|30|31)';var d1 = '([1-9]|[1-2][0-9]|30|31)';var di = -1;
        var H2 = '([0-1][0-9]|20|21|22|23)';var H1 = '([0-9]|1[0-9]|20|21|22|23)';var Hi = -1;
        var m2 = '([0-5][0-9])';var m1 = '(&lt;img src =&quot;http://blog.csdn.net/akunshenjk/aggbug/4140316.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/akunshenjk/225386850/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/akunshenjk/225386850/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 01 May 2009 01:04:00 +0800</pubDate><author>阿坤</author><comments>http://blog.csdn.net/akunshenjk/archive/2009/04/30/4140316.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/akunshenjk/archive/2009/04/30/4140316.aspx</guid><dc:creator>阿坤</dc:creator><fs:srclink>http://blog.csdn.net/akunshenjk/archive/2009/04/30/4140316.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/akunshenjk/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/akunshenjk/~1151865/225386850/1151852</fs:itemid></item><item><title>文件按时间排序(FileInfo)</title><link>http://blog.csdn.net/akunshenjk/archive/2008/07/25/2710020.aspx</link><wfw:comment>http://blog.csdn.net/akunshenjk/comments/2710020.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/akunshenjk/comments/commentRss/2710020.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2710020</trackback:ping><description>天气超热，感冒了，体温比气温还高，随便写点东西玩玩。



言归正传，System.IO读取文件夹下的所有文件时，我们需要根据文件最后修改时间来排序，以前觉得好难；最近想通了，很简单。写了一个Demo:



using System;
using System.Data;
using System.IO;

namespace FilesSort
{
    public class Class1
    {
        /// 
        /// 读取目录
        /// 
        private string strDirectory = string.Empty;

        public Class1(string strDirectory) {
            this.strDirectory = strDirectory;
        }
        /// 
        /// 获取文件列表
        /// 
        /// 
        p&lt;img src =&quot;http://blog.csdn.net/akunshenjk/aggbug/2710020.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/akunshenjk/225386851/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/akunshenjk/225386851/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 25 Jul 2008 22:55:00 +0800</pubDate><author>阿坤</author><comments>http://blog.csdn.net/akunshenjk/archive/2008/07/25/2710020.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/akunshenjk/archive/2008/07/25/2710020.aspx</guid><dc:creator>阿坤</dc:creator><fs:srclink>http://blog.csdn.net/akunshenjk/archive/2008/07/25/2710020.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/akunshenjk/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/akunshenjk/~1151865/225386851/1151852</fs:itemid></item><item><title>其实很穷</title><link>http://blog.csdn.net/akunshenjk/archive/2008/06/30/2599768.aspx</link><wfw:comment>http://blog.csdn.net/akunshenjk/comments/2599768.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/akunshenjk/comments/commentRss/2599768.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2599768</trackback:ping><description>&lt;br /&gt;今天算算了，发现自己真的很穷。&lt;br /&gt;以为工资涨了，手里的钞票会多起来；仔细一算才发现，自己还是一个穷光蛋。&lt;br /&gt;工资到手还掉房贷，所剩已不多；日常生活费又花掉1K，还有乱78糟的开销，又要1K，剩在手里还有几个钢镚。连一个雪糕都买不到。真TM的穷。&lt;br /&gt;菜价涨了，粮油涨了，电有涨了，连上个超市，塑料袋还有收钱了；钱，TM的都跑人家口袋去了。&lt;br /&gt;穷就一个字。&lt;img src =&quot;http://blog.csdn.net/akunshenjk/aggbug/2599768.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/akunshenjk/225386854/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/akunshenjk/225386854/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 01 Jul 2008 06:33:00 +0800</pubDate><author>阿坤</author><comments>http://blog.csdn.net/akunshenjk/archive/2008/06/30/2599768.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/akunshenjk/archive/2008/06/30/2599768.aspx</guid><dc:creator>阿坤</dc:creator><fs:srclink>http://blog.csdn.net/akunshenjk/archive/2008/06/30/2599768.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/akunshenjk/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/akunshenjk/~1151865/225386854/1151852</fs:itemid></item><item><title>电涨了</title><link>http://blog.csdn.net/akunshenjk/archive/2008/06/30/2597874.aspx</link><wfw:comment>http://blog.csdn.net/akunshenjk/comments/2597874.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/akunshenjk/comments/commentRss/2597874.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2597874</trackback:ping><description>今天看看QQ新闻说电价要涨了，说实话本不想说什么，但心里有些憋。

      2008年的唯一关键字--涨,

      年初雪灾造成蔬果、禽肉类价格飙升，在农贸市场最便宜的没又低于5块的。

      超市的商品偷偷摸摸的涨了，没人知晓。

     粮油也在不停的喊要涨价。

     现在终于轮到电价的了，

     下一个轮到什么呢？

     不知道，有点是知道的肯定不会轮到我们的口袋。。。。。。。
&lt;img src =&quot;http://blog.csdn.net/akunshenjk/aggbug/2597874.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/akunshenjk/225386855/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/akunshenjk/225386855/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 30 Jun 2008 21:04:00 +0800</pubDate><author>阿坤</author><comments>http://blog.csdn.net/akunshenjk/archive/2008/06/30/2597874.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/akunshenjk/archive/2008/06/30/2597874.aspx</guid><dc:creator>阿坤</dc:creator><fs:srclink>http://blog.csdn.net/akunshenjk/archive/2008/06/30/2597874.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/akunshenjk/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/akunshenjk/~1151865/225386855/1151852</fs:itemid></item><item><title>Web控件的效率测试</title><link>http://blog.csdn.net/akunshenjk/archive/2008/06/24/2582786.aspx</link><wfw:comment>http://blog.csdn.net/akunshenjk/comments/2582786.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/akunshenjk/comments/commentRss/2582786.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2582786</trackback:ping><description>引言：微软在推出asp.net的同时，推出了很多附带的web控件；这些丰富的控件使得我们很容易实现一些在asp里比较难实现的效果，使得我们的开发变得很轻松，也吸引了很多初学者。但是视乎很少人考虑过web控件的执行效率，今天我们已Repeater 控件为例来测试一下Web控件的执行效率。&lt;img src =&quot;http://blog.csdn.net/akunshenjk/aggbug/2582786.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/akunshenjk/225386858/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/akunshenjk/225386858/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 25 Jun 2008 01:19:00 +0800</pubDate><author>阿坤</author><comments>http://blog.csdn.net/akunshenjk/archive/2008/06/24/2582786.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/akunshenjk/archive/2008/06/24/2582786.aspx</guid><dc:creator>阿坤</dc:creator><fs:srclink>http://blog.csdn.net/akunshenjk/archive/2008/06/24/2582786.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/akunshenjk/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/akunshenjk/~1151865/225386858/1151852</fs:itemid></item><item><title>Ajax有条件的跨域访问</title><link>http://blog.csdn.net/akunshenjk/archive/2008/06/12/2539798.aspx</link><wfw:comment>http://blog.csdn.net/akunshenjk/comments/2539798.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/akunshenjk/comments/commentRss/2539798.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2539798</trackback:ping><description>有网友说通过Iframe等一系列操作能实现Ajax的跨域操作，可惜我都没测试成功，可能我太笨了，先敲下自己。

前不久帮人搞sina的股票实时图，我去查看了sina的源代码，顺便扣了下来，经自己的改造成了如下形式：

if(document.getElementById('MyScript')){                    document.body.removeChild(document.getElementById('MyScript'));                }                var element = document.createElement(&quot;script&quot;);                element.id='MyScript';                element.type = &quot;text/javascript&quot;;                        element.charset = &quot;gb2312&quot;;                                if(typeid==0){&lt;img src =&quot;http://blog.csdn.net/akunshenjk/aggbug/2539798.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/akunshenjk/225386859/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/akunshenjk/225386859/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 12 Jun 2008 22:47:00 +0800</pubDate><author>阿坤</author><comments>http://blog.csdn.net/akunshenjk/archive/2008/06/12/2539798.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/akunshenjk/archive/2008/06/12/2539798.aspx</guid><dc:creator>阿坤</dc:creator><fs:srclink>http://blog.csdn.net/akunshenjk/archive/2008/06/12/2539798.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/akunshenjk/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/akunshenjk/~1151865/225386859/1151852</fs:itemid></item><item><title>老外写的一个javascript下Date格式化函数</title><link>http://blog.csdn.net/akunshenjk/archive/2008/06/12/2539638.aspx</link><wfw:comment>http://blog.csdn.net/akunshenjk/comments/2539638.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/akunshenjk/comments/commentRss/2539638.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2539638</trackback:ping><description>Date.prototype.format = function(mask) {
	var d = this;
	var zeroize = function (value, length) {
		if (!length) length = 2;
		value = String(value);
		for (var i = 0, zeros = ''; i  99) m = Math.round(m / 10);
					return zeroize(m);
			case 'tt':	return d.getHours() &lt;img src =&quot;http://blog.csdn.net/akunshenjk/aggbug/2539638.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/akunshenjk/225386885/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/akunshenjk/225386885/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 12 Jun 2008 22:15:00 +0800</pubDate><author>阿坤</author><comments>http://blog.csdn.net/akunshenjk/archive/2008/06/12/2539638.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/akunshenjk/archive/2008/06/12/2539638.aspx</guid><dc:creator>阿坤</dc:creator><fs:srclink>http://blog.csdn.net/akunshenjk/archive/2008/06/12/2539638.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/akunshenjk/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/akunshenjk/~1151865/225386885/1151852</fs:itemid></item><item><title>基于AjaxPro的javascript 数据绑定控件GridView(2.01版)</title><link>http://blog.csdn.net/akunshenjk/archive/2008/06/12/2539590.aspx</link><wfw:comment>http://blog.csdn.net/akunshenjk/comments/2539590.aspx</wfw:comment><slash:comments>9</slash:comments><wfw:commentRss>http://blog.csdn.net/akunshenjk/comments/commentRss/2539590.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2539590</trackback:ping><description>去年写了一个javascript 的GridView,基本满足当时的需求，最近需求变了，需要对GridView进行升级了。

/*---------------------------------------------------------- *  JavaScript GridView create by Shenjk *  it's use to JavaScript DataSet Bind *  Author: shenjk *  Date:   2007-06-27 *  Modify: 2008-06-12 *	Version:2.01 *-----------------------------------------------------------*/  /*--------------------------------------------------  * Class:       GridView  * @Parameter:  container   控件容器  * @Parameter:  datasource  数据源(类型为DataTabl&lt;img src =&quot;http://blog.csdn.net/akunshenjk/aggbug/2539590.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/akunshenjk/225386890/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/akunshenjk/225386890/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 12 Jun 2008 22:08:00 +0800</pubDate><author>阿坤</author><comments>http://blog.csdn.net/akunshenjk/archive/2008/06/12/2539590.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/akunshenjk/archive/2008/06/12/2539590.aspx</guid><dc:creator>阿坤</dc:creator><fs:srclink>http://blog.csdn.net/akunshenjk/archive/2008/06/12/2539590.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/akunshenjk/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/akunshenjk/~1151865/225386890/1151852</fs:itemid></item><item><title>SQLite Helper类</title><link>http://blog.csdn.net/akunshenjk/archive/2008/06/10/2531550.aspx</link><wfw:comment>http://blog.csdn.net/akunshenjk/comments/2531550.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/akunshenjk/comments/commentRss/2531550.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2531550</trackback:ping><description>SQLite是一个开源数据库，现在已变得越来越流行，它的体积很小，被广泛应用于各种不同类型的应用中。SQLite已经是世界上布署得最广泛的SQL数据库引擎，被用在无以计数的桌面电脑应用中，还有消费电子设备中，如移动电话、掌上电脑和MP3播放器等。SQLite的源码就放在公有领域（即WikiPedia的public domain)中。&lt;img src =&quot;http://blog.csdn.net/akunshenjk/aggbug/2531550.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/akunshenjk/225386897/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/akunshenjk/225386897/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 10 Jun 2008 23:27:00 +0800</pubDate><author>阿坤</author><comments>http://blog.csdn.net/akunshenjk/archive/2008/06/10/2531550.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/akunshenjk/archive/2008/06/10/2531550.aspx</guid><dc:creator>阿坤</dc:creator><fs:srclink>http://blog.csdn.net/akunshenjk/archive/2008/06/10/2531550.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/akunshenjk/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/akunshenjk/~1151865/225386897/1151852</fs:itemid></item></channel></rss>