<?xml version="1.0" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="css/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>夜的第七章 - ASP.NET、C#、.NET、Web开发 - Java</title><link>http://www.leadnt.com/</link><description>go on,go on - </description><generator>RainbowSoft Studio Z-Blog 1.8 Arwen Build 81206</generator><language>zh-CN</language><copyright>&amp;amp;copy;2007 - 2010 www.leadnt.com 保留一些权利吧</copyright><pubDate>Sun, 01 Aug 2010 16:58:23 +0800</pubDate><item><title>struts2出错&amp;amp;eclipse中JSP默认编码</title><author>djy365@sina.com (roydux)</author><link>http://www.leadnt.com/Java/372.html</link><pubDate>Mon, 11 May 2009 21:23:30 +0800</pubDate><guid>http://www.leadnt.com/Java/372.html</guid><description><![CDATA[<p>struts2.lib下下来是不能用的，貌似有BUG。<br />想正常使用，必须下struts.all，然后解压里面的例子如blank等，用它里面引用的lib，就可以。开源的东西真是前疮百孔啊，发布的时候都不检查下，真不负责&hellip;&hellip;<br />BS下。</p><p>eclipse中的JSP默认编码忒麻烦。所以必须改。改成UTF-8挺好：<br />窗口-》首选项-》WEB-》JSP文件-》编码改下就OK了。</p>]]></description><category>Java</category><comments>http://www.leadnt.com/Java/372.html#comment</comments><wfw:comment>http://www.leadnt.com/</wfw:comment><wfw:commentRss>http://www.leadnt.com/feed.asp?cmt=372</wfw:commentRss><trackback:ping>http://www.leadnt.com/cmd.asp?act=tb&amp;id=372&amp;key=64649a2c</trackback:ping></item><item><title>数据库操作类SqlHelper(java版)</title><author>djy365@sina.com (roydux)</author><link>http://www.leadnt.com/Java/350.html</link><pubDate>Fri, 13 Feb 2009 12:39:43 +0800</pubDate><guid>http://www.leadnt.com/Java/350.html</guid><description><![CDATA[仿.NET架构中的SQLHelper类,使操作数据库更方便，同时支持多个数据库.测试阶段,欢迎提交BUG.]]></description><category>Java</category><comments>http://www.leadnt.com/Java/350.html#comment</comments><wfw:comment>http://www.leadnt.com/</wfw:comment><wfw:commentRss>http://www.leadnt.com/feed.asp?cmt=350</wfw:commentRss><trackback:ping>http://www.leadnt.com/cmd.asp?act=tb&amp;id=350&amp;key=7d975c9a</trackback:ping></item><item><title>TOMCAT配置JNDI </title><author>djy365@sina.com (roydux)</author><link>http://www.leadnt.com/Java/348.html</link><pubDate>Thu, 12 Feb 2009 18:24:22 +0800</pubDate><guid>http://www.leadnt.com/Java/348.html</guid><description><![CDATA[<p>想到看上去挺简单的一件事情反而花了我半天时间，郁闷得要命。还是有必要把正确的整理清楚。<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;我是在Eclipse3.1下调用Tomcat5.0,数据库是MS SqlServer2000 sp4，驱动程序是<a href="http://jtds.sourceforge.net/" target="_blank"><font color="#1a8bc8">jtds1.1</font></a>。&nbsp;&nbsp;<br />...</p>]]></description><category>Java</category><comments>http://www.leadnt.com/Java/348.html#comment</comments><wfw:comment>http://www.leadnt.com/</wfw:comment><wfw:commentRss>http://www.leadnt.com/feed.asp?cmt=348</wfw:commentRss><trackback:ping>http://www.leadnt.com/cmd.asp?act=tb&amp;id=348&amp;key=7fe4a670</trackback:ping></item><item><title>java.util.Date与java.sql.Date相互转换</title><author>djy365@sina.com (roydux)</author><link>http://www.leadnt.com/Java/347.html</link><pubDate>Thu, 12 Feb 2009 17:03:10 +0800</pubDate><guid>http://www.leadnt.com/Java/347.html</guid><description><![CDATA[<div>在ResultSet中我们经常使用的setDate或getDate的数据类型是java.sql.Date，而在平时java程序中我们一般习惯使用 java.util.Date。因此在DAO层我们经常会碰到这俩种数据类型的相互转换，经过了一个下午的折腾，鄙人对两者的转换方法做出了小小总结，希望大家不吝指教。<br /><strong>两者的关系<br /></strong><div style="text-align: left"><span style="color: rgb(0,128,255)">java.lang.Object</span><br />...</div></div>]]></description><category>Java</category><comments>http://www.leadnt.com/Java/347.html#comment</comments><wfw:comment>http://www.leadnt.com/</wfw:comment><wfw:commentRss>http://www.leadnt.com/feed.asp?cmt=347</wfw:commentRss><trackback:ping>http://www.leadnt.com/cmd.asp?act=tb&amp;id=347&amp;key=04ac2655</trackback:ping></item><item><title>ArrayList与Vector的区别</title><author>djy365@sina.com (roydux)</author><link>http://www.leadnt.com/Java/345.html</link><pubDate>Thu, 12 Feb 2009 14:15:14 +0800</pubDate><guid>http://www.leadnt.com/Java/345.html</guid><description><![CDATA[<h2 class="title"><font color="#000000">Collection <br />├List <br />│├LinkedList <br />│├ArrayList <br />│└Vector <br />│　└Stack <br />└Set</font></h2><div><p>Collection接口 <br />　　Collection是最基本的集合接口，一个Collection代表一组Object，即Collection的元素（Elements）。一些Collection允许相同的元素而另一些不行。一些能排序而另一些不行。Java SDK不提供直接继承自Collection的类，Java SDK提供的类都是继承自Collection的&ldquo;子接口&rdquo;如List和Set。 <br />...</p></div>]]></description><category>Java</category><comments>http://www.leadnt.com/Java/345.html#comment</comments><wfw:comment>http://www.leadnt.com/</wfw:comment><wfw:commentRss>http://www.leadnt.com/feed.asp?cmt=345</wfw:commentRss><trackback:ping>http://www.leadnt.com/cmd.asp?act=tb&amp;id=345&amp;key=3ef97db0</trackback:ping></item><item><title>tomcat 6.0 配置虚拟目录和目录浏览</title><author>djy365@sina.com (roydux)</author><link>http://www.leadnt.com/Java/343.html</link><pubDate>Fri, 06 Feb 2009 09:49:45 +0800</pubDate><guid>http://www.leadnt.com/Java/343.html</guid><description><![CDATA[<p><font size="3">一、具体配置方法如下：</font></p><p><font size="3">找到TOMCAT的安装目录，再打开conf目录下的server.xml.</font></p><p><font size="3">将元素&lt;Context path=&quot;/testservlet&quot; docBase=&quot;D:\testservlet&quot; /&gt;加入元素&lt;host&gt;&lt;/host&gt;中间。（不清楚话，可以参考XML这门语言，非常有用）</font></p>...]]></description><category>Java</category><comments>http://www.leadnt.com/Java/343.html#comment</comments><wfw:comment>http://www.leadnt.com/</wfw:comment><wfw:commentRss>http://www.leadnt.com/feed.asp?cmt=343</wfw:commentRss><trackback:ping>http://www.leadnt.com/cmd.asp?act=tb&amp;id=343&amp;key=80f37a8b</trackback:ping></item><item><title>JDBC驱动汇总</title><author>djy365@sina.com (roydux)</author><link>http://www.leadnt.com/Java/342.html</link><pubDate>Thu, 05 Feb 2009 20:18:04 +0800</pubDate><guid>http://www.leadnt.com/Java/342.html</guid><description><![CDATA[<div class="articleContent" id="articleBody"><div><span style="font-size: 9pt; color: red"><font face="Courier New" size="3">Microsoft SQL Server series (6.5, 7.x and 2000) and Sybase 10</font></span><span style="font-size: 9pt; color: black"><br />...</div></div></span>]]></description><category>Java</category><comments>http://www.leadnt.com/Java/342.html#comment</comments><wfw:comment>http://www.leadnt.com/</wfw:comment><wfw:commentRss>http://www.leadnt.com/feed.asp?cmt=342</wfw:commentRss><trackback:ping>http://www.leadnt.com/cmd.asp?act=tb&amp;id=342&amp;key=a113259d</trackback:ping></item><item><title>Eclipse智能提示改为中文</title><author>djy365@sina.com (roydux)</author><link>http://www.leadnt.com/Java/338.html</link><pubDate>Mon, 19 Jan 2009 12:43:34 +0800</pubDate><guid>http://www.leadnt.com/Java/338.html</guid><description><![CDATA[<div class="tpc_content">Sun 官方的中文版 Java API 文档发布了，地址为：<a href="http://gceclub.sun.com.cn/download/Java_Docs/html_zh_CN.zip" target="_blank"><font face="Tahoma" color="#2f5fa1">http://gceclub.sun.com.cn/download/Java_Docs/html_zh_CN.zip</font></a>,</div>...]]></description><category>Java</category><comments>http://www.leadnt.com/Java/338.html#comment</comments><wfw:comment>http://www.leadnt.com/</wfw:comment><wfw:commentRss>http://www.leadnt.com/feed.asp?cmt=338</wfw:commentRss><trackback:ping>http://www.leadnt.com/cmd.asp?act=tb&amp;id=338&amp;key=4d6e3627</trackback:ping></item></channel></rss>
