<?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/flyingstarwb" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/flyingstarwb" type="application/rss+xml"></fs:self_link><lastBuildDate>Tue, 29 Sep 2009 16:30:00 GMT</lastBuildDate><title>小兵的专栏</title><description>海阔凭鱼跃，天高任鸟飞</description><link>http://blog.csdn.net/blogrss.aspx?username=flyingstarwb</link><item><title>Java入门之JDK下载</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/09/30/4619238.aspx</link><description>&lt;br /&gt;Sun 公司提供的Java API Docs是学习和使用Java语言中最经常使用的参考资料之一.但是长期以来此文档只有英文版,对于中国地区的Java开发者来说相当的不便.目前Sun 公司正在组织多方力量将此文档翻译成中文,并于2005年10月31日在Sun 中国技术社区（http://gceclub.sun.com.cn/）正式发布第一批中文版Java API文档(包括java.lang和java.util类库API 文档的中文版).经过将近10个月的努力,目前我们已经将Java SE 5.0的全部API文档中文化.开发人员可以通过Sun 中国技术社区的网站在线浏览相关文档,也可以将全部文档下载到本地以方便检索和使用.&lt;br /&gt;&lt;br /&gt;最好用的CHM格式API文档:&lt;br /&gt;http://www.javatang.com/_download/jdk150.ZH_cn.rar&lt;br /&gt;http://www.javatang.com/_download/jdk6.ZH_cn.rar&lt;br /&gt;&lt;br /&gt;J2SDK &amp; API下载&lt;br /&gt;http://java&lt;img src=&quot;http://www1.feedsky.com/t1/276922841/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/09/30/4619238.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/flyingstarwb/276922841/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/flyingstarwb/276922841/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 30 Sep 2009 00:30:00 +0800</pubDate><author>王兵</author><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/09/30/4619238.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/09/30/4619238.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/276922841/1191696</fs:itemid></item><item><title>Const常量真的不能改变了么？</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/06/25/4297630.aspx</link><description>&lt;br /&gt;Const常量真的不能改变了么？&lt;br /&gt;&lt;br /&gt;在介绍const用法的时候，老师们都说&quot;由const修饰的变量的数值是不能修改的&quot;, 不过世间的事总不是那么绝对的！下面就介绍几种修改const变量的方法！&lt;br /&gt;我们声明一个const类型的变量，可以用如下代码：&lt;br /&gt;const int a = 2;&lt;br /&gt;直接对a进行赋值是不行的，如果我们一定要想改变a的值怎么办？在C，C++中指针真是个好东西，它可以为我们巧妙的解决很多问题。我们使用指针用如下代码即可达到修改a值的目的！&lt;br /&gt;const int a = 10;&lt;br /&gt;int *p  = (int*)&amp;a;&lt;br /&gt;*p = 20;&lt;br /&gt;cout &lt;br /&gt;如果是常量指针呢？&lt;br /&gt;    int array[10]={0};&lt;br /&gt;    const int *pointer=array;&lt;br /&gt;    int *pointer1=(int*)pointer;&lt;br /&gt;    pointer1[0]=1;&lt;br /&gt;    cout&lt;img src=&quot;http://www1.feedsky.com/t1/276922844/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/06/25/4297630.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/flyingstarwb/276922844/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/flyingstarwb/276922844/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 25 Jun 2009 14:29:00 +0800</pubDate><author>王兵</author><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/06/25/4297630.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/06/25/4297630.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/276922844/1191696</fs:itemid></item><item><title>C语言实现交换两个数</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/06/24/4295987.aspx</link><description>C语言中要实现交换两个变量的值可以有很多种方法，下面是我收集的方法&lt;img src=&quot;http://www1.feedsky.com/t1/276922846/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/06/24/4295987.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/flyingstarwb/276922846/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/flyingstarwb/276922846/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 24 Jun 2009 22:18:00 +0800</pubDate><author>王兵</author><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/06/24/4295987.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/06/24/4295987.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/276922846/1191696</fs:itemid></item><item><title>基准测试程序</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225913.aspx</link><description>基准测试程序&lt;img src=&quot;http://www1.feedsky.com/t1/276922847/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225913.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/flyingstarwb/276922847/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/flyingstarwb/276922847/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 30 May 2009 14:48:00 +0800</pubDate><author>王兵</author><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225913.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225913.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/276922847/1191696</fs:itemid></item><item><title>Fibonacci数列 算法</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225834.aspx</link><description>Fibonacci数列 算法&lt;img src=&quot;http://www1.feedsky.com/t1/276922848/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225834.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/flyingstarwb/276922848/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/flyingstarwb/276922848/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 30 May 2009 14:04:00 +0800</pubDate><author>王兵</author><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225834.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/30/4225834.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/276922848/1191696</fs:itemid></item><item><title>svn目录结构组成的教程</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209798.aspx</link><description>&lt;br /&gt;svn目录结构组成的教程  &lt;br /&gt;wolfwebadmin &lt;br /&gt;├─ProjectManagement&lt;br /&gt;│ ├─trunk&lt;br /&gt;│ ├─branches&lt;br /&gt;│ └─tags&lt;br /&gt;└─SSO&lt;br /&gt;├─trunk&lt;br /&gt;├─branches&lt;br /&gt;└─tags &lt;br /&gt;大概的说一下, ProjectManagement和SSO是两个项目 trunk是开发的主线代码, 存放能够运行的正确的代码; 程序员如果开发新的程序或者改bug, 一般要先branch(SVN的一个功能) trunk目录下的代码到branches目录的一个子目录,在那里对代码进行修改, 确认无误后再提交到trunk主线下(但是有的时候为了效率, 我们也多人都在trunk目录下开发项目). tags目录可以看做主线代码的快照, 比如你做了1.0又做了2.0, 那每个不同版本的代码你就做快照放到tags文件夹下了.&lt;br /&gt;一下文字转自http://rocksun.cn/svn/?p=43 Subversion版本库布局 很多人问我”什么是推荐的版本库&lt;img src=&quot;http://www1.feedsky.com/t1/276922850/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209798.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/flyingstarwb/276922850/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/flyingstarwb/276922850/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 22 May 2009 22:22:00 +0800</pubDate><author>王兵</author><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209798.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209798.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/276922850/1191696</fs:itemid></item><item><title>svn使用简单教程</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209793.aspx</link><description>&lt;br /&gt;svn使用简单教程(http://blog.csdn.net/adcxf/archive/2008/09/21/2957878.aspx)&lt;br /&gt;你是否正在参与团队合作项目？&lt;br /&gt;你是否遇到过这样的情况：当你正在修改一个文件，却出现另一个人作了同样的事情。你是否曾因为这种巧合而导致了你的修改付之东流？&lt;br /&gt;你是否曾经在文件保存之后，又想恢复到文件保存之前？你是否想过要去查看一个文件几天前的内容？&lt;br /&gt;当你发现一个项目中的bug，你是否想知道它是何时出现在你的代码中？&lt;br /&gt;如果你对上面任何一个问题回答“Yes”，那么TortoiseSVN就是你所需要的！你得仔细阅读TortoiseSVN的说明，学会如何解决上面的问题。这并不难～&lt;br /&gt;这份说明是写给那些希望使用Subversion去管理他们的资料，却又不习惯于命令行的操作的人。因为TortoiseSVN就像是一个windows的扩展外壳，用户可以像使用“我的电脑”那样使用这个软件。&lt;br /&gt;TortoiseSVN是自由软件，你不需要花钱就可以使用它，并且可以随意使用。它的开发遵循GPL协议。&lt;img src=&quot;http://www1.feedsky.com/t1/276922852/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209793.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/flyingstarwb/276922852/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/flyingstarwb/276922852/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 22 May 2009 22:18:00 +0800</pubDate><author>王兵</author><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209793.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209793.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/276922852/1191696</fs:itemid></item><item><title>常用网站(不断更新中)</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209514.aspx</link><description>开源社区类：http://sourceforge.net                   http://www.codeproject.com  windows上的开源程序下载软件开发论坛：http://www.csdn.net                     http://www.itpub.netLinux学习类：http://www.chinaunix.net网络安全类：网界（http://www.cnw.com.cn）&lt;img src=&quot;http://www1.feedsky.com/t1/276922854/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209514.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/flyingstarwb/276922854/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/flyingstarwb/276922854/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 22 May 2009 19:07:00 +0800</pubDate><author>王兵</author><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209514.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/22/4209514.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/276922854/1191696</fs:itemid></item><item><title>CPL文件(转)</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/16/4191762.aspx</link><description>CPL文件就是控制面板中各个控件。&lt;img src=&quot;http://www1.feedsky.com/t1/276922856/flyingstarwb/csdn.net/s.gif?r=http://blog.csdn.net/flyingstarwb/archive/2009/05/16/4191762.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/flyingstarwb/276922856/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/flyingstarwb/276922856/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 16 May 2009 11:04:00 +0800</pubDate><author>王兵</author><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/16/4191762.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/16/4191762.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/276922856/1191696</fs:itemid></item><item><title>IIS中Web应用程序和WebServices自动调用Application_End函数</title><link>http://blog.csdn.net/flyingstarwb/archive/2009/05/05/4151168.aspx</link><description>在IIS6.0下，配置一个Web 应用程序，或是Web 服务的时候，如果不指定特定的应用程序池，则使用默认的应用程序池：DefaultAppPool，而默认情况下，DefaultAppPool设置成为20分钟没有响应则执行释放应用程序实例，执行Gloabl.axax中Application_End中的操作，当下一个请求到来的时候，再执行Application_Start的操作，如果用户希望能一直保持应用程序实例的话，则需要在选择相应的应用程序池进行设置，取消这个限制。最近在项目中使用WebServices来实现任务调度的接口，为了实现任务任务的定时调度，我们在Application_Start中定义了一个Quartz.NET的一个调度对象，并对他进行初始化，没调用一个相应的web服务函数，就添加一个对应的job到该框架中，等待调度。我们在Application_End函数中对该调度对象进行了资源销毁工作。在测试过程中，我们发现，当停止调用Web服务后20-30分钟后系统自动调用Application_End函数，所以造成很多对应的job都不能正常调度，经过baidu,goo&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/flyingstarwb/276922858/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/flyingstarwb/276922858/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 05 May 2009 12:51:00 +0800</pubDate><author>王兵</author><guid isPermaLink="false">http://blog.csdn.net/flyingstarwb/archive/2009/05/05/4151168.aspx</guid><dc:creator>王兵</dc:creator><fs:srclink>http://blog.csdn.net/flyingstarwb/archive/2009/05/05/4151168.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/flyingstarwb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/flyingstarwb/~1191718/276922858/1191696</fs:itemid></item></channel></rss>