<?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/haohaokingXP" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/haohaokingXP" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 13 Nov 2009 17:07:00 GMT</lastBuildDate><title>haohaokingXP的专栏(泥泞留痕)</title><description>一生转战三千里，一剑能当百万师</description><link>http://blog.csdn.net/blogrss.aspx?username=haohaokingXP</link><item><title>体验Visual Stdio 2010 beta Professional  1</title><link>http://blog.csdn.net/haohaokingXP/archive/2009/11/14/4809495.aspx</link><description>最近几天想给项目做一个测试工具，能生成一定通信格式协议的数据，打算使用VC 6.0做做，毕竟自己也对MFC有了一定了解，写个小程序还不成问题。又赶上Micorsoft推出了Visual Stdio 2010 Professional Beta 1，毕竟上大学以来一直受微软教育(也可以说成毒害吧！)多年，对微软还是有感情的哈！每逢微软升级IDE版本，我都要下一个体验体验。据说2010 的Visual C++界面变好看了，如果可以的话，我打算拿他做开发工具。下载了ISO安装文件，1.4个G,下载之后，我开始打算兴奋准备要安装了，但是痛苦的事情来了，要求C盘需要2~3个G，我C盘不到300M了，我这花了两个小时清理，终于达到4.8G，疲惫过后还是很兴奋，毕竟就安装了。安装了.NET FRAMWORK 3.5吧，安装需要重启两次（不知道为什么要重启这么多次），其他又重启一次，总共重启3次！我只装了个VC 2010，打开程序，开始界面真的很酷！但是菜单中的字体那种朦胧颜色让我想起VISTA了，总是感觉不太好，我先试试MFC APPLICATION，基本和VC 6.0,&lt;img src=&quot;http://www1.feedsky.com/t1/296385398/haohaokingXP/csdn.net/s.gif?r=http://blog.csdn.net/haohaokingXP/archive/2009/11/14/4809495.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/haohaokingXP/296385398/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/haohaokingXP/296385398/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 14 Nov 2009 01:07:00 +0800</pubDate><author>王昊东</author><guid isPermaLink="false">http://blog.csdn.net/haohaokingXP/archive/2009/11/14/4809495.aspx</guid><dc:creator>王昊东</dc:creator><fs:srclink>http://blog.csdn.net/haohaokingXP/archive/2009/11/14/4809495.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haohaokingXP/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haohaokingXP/~1073911/296385398/1073910</fs:itemid></item><item><title>使用Zeller’s Congruence 获取某一天是星期几</title><link>http://blog.csdn.net/haohaokingXP/archive/2009/10/20/4701712.aspx</link><description>&lt;br /&gt;&lt;br /&gt;算法如下：&lt;br /&gt;&lt;br /&gt; public String  GetDayOfWeek(int month, int day, int year){&lt;br /&gt;&lt;br /&gt;  final String Weekdays [] = {&lt;br /&gt;   &quot;Monday&quot;,&lt;br /&gt;   &quot;Tuesday&quot;,&lt;br /&gt;   &quot;Wednesday,&quot;,&lt;br /&gt;   &quot;Thursday&quot;,&lt;br /&gt;   &quot;Friday&quot;,&lt;br /&gt;   &quot;Saturday&quot;,&lt;br /&gt;   &quot;Sunday&quot;&lt;br /&gt;  };&lt;br /&gt;  int dayOfWeak    = 0;&lt;br /&gt;  int isoDayofWeak = 0;&lt;br /&gt;&lt;br /&gt;  dayOfWeak = ( day  &lt;br /&gt;          + (int)(((double)( month + 1)) * 26) / 10) + year&lt;br /&gt;          + (int)(((double)year))/4 &lt;br /&gt;          + 6 *&lt;img src=&quot;http://www1.feedsky.com/t1/296385399/haohaokingXP/csdn.net/s.gif?r=http://blog.csdn.net/haohaokingXP/archive/2009/10/20/4701712.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/haohaokingXP/296385399/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/haohaokingXP/296385399/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 20 Oct 2009 08:19:00 +0800</pubDate><author>王昊东</author><guid isPermaLink="false">http://blog.csdn.net/haohaokingXP/archive/2009/10/20/4701712.aspx</guid><dc:creator>王昊东</dc:creator><fs:srclink>http://blog.csdn.net/haohaokingXP/archive/2009/10/20/4701712.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haohaokingXP/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haohaokingXP/~1073911/296385399/1073910</fs:itemid></item><item><title>VB细节</title><link>http://blog.csdn.net/haohaokingXP/archive/2007/06/05/1638877.aspx</link><description>VB细节&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/haohaokingXP/296385400/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/haohaokingXP/296385400/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 05 Jun 2007 11:48:00 +0800</pubDate><author>王昊东</author><guid isPermaLink="false">http://blog.csdn.net/haohaokingXP/archive/2007/06/05/1638877.aspx</guid><dc:creator>王昊东</dc:creator><fs:srclink>http://blog.csdn.net/haohaokingXP/archive/2007/06/05/1638877.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haohaokingXP/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haohaokingXP/~1073911/296385400/1073910</fs:itemid></item><item><title>sql server连接问题</title><link>http://blog.csdn.net/haohaokingXP/archive/2007/06/05/1638857.aspx</link><description>sql server连接问题&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/haohaokingXP/296385401/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/haohaokingXP/296385401/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 05 Jun 2007 11:43:00 +0800</pubDate><author>王昊东</author><guid isPermaLink="false">http://blog.csdn.net/haohaokingXP/archive/2007/06/05/1638857.aspx</guid><dc:creator>王昊东</dc:creator><fs:srclink>http://blog.csdn.net/haohaokingXP/archive/2007/06/05/1638857.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haohaokingXP/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haohaokingXP/~1073911/296385401/1073910</fs:itemid></item><item><title>JAVA链接数据库代码</title><link>http://blog.csdn.net/haohaokingXP/archive/2007/05/17/1612597.aspx</link><description>常用数据库的链接&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/haohaokingXP/296385402/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/haohaokingXP/296385402/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 17 May 2007 09:00:00 +0800</pubDate><author>王昊东</author><guid isPermaLink="false">http://blog.csdn.net/haohaokingXP/archive/2007/05/17/1612597.aspx</guid><dc:creator>王昊东</dc:creator><fs:srclink>http://blog.csdn.net/haohaokingXP/archive/2007/05/17/1612597.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haohaokingXP/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haohaokingXP/~1073911/296385402/1073910</fs:itemid></item><item><title>配置TOMCAT和ECLIPSE的发生错误总结</title><link>http://blog.csdn.net/haohaokingXP/archive/2007/05/16/1611624.aspx</link><description>今天配置TOMCAT 和ECLIPSE，出现以下问题&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/haohaokingXP/296385403/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/haohaokingXP/296385403/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 16 May 2007 14:53:00 +0800</pubDate><author>王昊东</author><guid isPermaLink="false">http://blog.csdn.net/haohaokingXP/archive/2007/05/16/1611624.aspx</guid><dc:creator>王昊东</dc:creator><fs:srclink>http://blog.csdn.net/haohaokingXP/archive/2007/05/16/1611624.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haohaokingXP/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haohaokingXP/~1073911/296385403/1073910</fs:itemid></item><item><title>无聊时编写的程序</title><link>http://blog.csdn.net/haohaokingXP/archive/2007/05/15/1609308.aspx</link><description>想编写个自动回复QQ的软件，公司最近上不去网，只能玩飞鸽了，代码如下，思想如下。&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/haohaokingXP/296385404/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/haohaokingXP/296385404/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 15 May 2007 08:38:00 +0800</pubDate><author>王昊东</author><guid isPermaLink="false">http://blog.csdn.net/haohaokingXP/archive/2007/05/15/1609308.aspx</guid><dc:creator>王昊东</dc:creator><fs:srclink>http://blog.csdn.net/haohaokingXP/archive/2007/05/15/1609308.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haohaokingXP/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haohaokingXP/~1073911/296385404/1073910</fs:itemid></item><item><title>Token Paste</title><link>http://blog.csdn.net/haohaokingXP/archive/2007/04/30/1593428.aspx</link><description>关于#和##运算符&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/haohaokingXP/296385405/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/haohaokingXP/296385405/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 30 Apr 2007 16:22:00 +0800</pubDate><author>王昊东</author><guid isPermaLink="false">http://blog.csdn.net/haohaokingXP/archive/2007/04/30/1593428.aspx</guid><dc:creator>王昊东</dc:creator><fs:srclink>http://blog.csdn.net/haohaokingXP/archive/2007/04/30/1593428.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haohaokingXP/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haohaokingXP/~1073911/296385405/1073910</fs:itemid></item><item><title>使用JDK6.0 Beta 做系统托盘 ---------JDK6.0新特性</title><link>http://blog.csdn.net/haohaokingXP/archive/2006/02/17/601009.aspx</link><description>JDK6 近期测试版本已经发布了，其中之一是提供了SystemTray类方便开发者做出 系统托盘，以前的版本没有提供系统托盘的方法，往往都是用本地方法来解决，这样就失去跨平台特性 ，往往不适合初学者，本文描述了如何用JDK6 做出简单的系统托盘。&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/haohaokingXP/296385406/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/haohaokingXP/296385406/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 17 Feb 2006 11:15:00 +0800</pubDate><author>haohaokingXP</author><guid isPermaLink="false">http://blog.csdn.net/haohaokingXP/archive/2006/02/17/601009.aspx</guid><dc:creator>haohaokingXP</dc:creator><fs:srclink>http://blog.csdn.net/haohaokingXP/archive/2006/02/17/601009.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haohaokingXP/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haohaokingXP/~1073911/296385406/1073910</fs:itemid></item><item><title>C++与Java比较之向上转型</title><link>http://blog.csdn.net/haohaokingXP/archive/2005/12/25/561546.aspx</link><description>本文&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/haohaokingXP/296385407/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/haohaokingXP/296385407/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 25 Dec 2005 11:47:00 +0800</pubDate><author>haohaokingXP</author><guid isPermaLink="false">http://blog.csdn.net/haohaokingXP/archive/2005/12/25/561546.aspx</guid><dc:creator>haohaokingXP</dc:creator><fs:srclink>http://blog.csdn.net/haohaokingXP/archive/2005/12/25/561546.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/haohaokingXP/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/haohaokingXP/~1073911/296385407/1073910</fs:itemid></item></channel></rss>