<?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/JOE4011" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/JOE4011" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 13 Feb 2009 11:21:00 GMT</lastBuildDate><title>BEHINDLENS</title><description>圣地拉萨-因为年轻，所以冲动！！</description><link>http://blog.csdn.net/JOE4011/</link><item><title>oracle时间应用整理</title><link>http://blog.csdn.net/JOE4011/archive/2009/02/13/3886256.aspx</link><wfw:comment>http://blog.csdn.net/JOE4011/comments/3886256.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/JOE4011/comments/commentRss/3886256.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3886256</trackback:ping><description>&lt;br /&gt;oracle时间应用整理&lt;br /&gt;&lt;br /&gt;格式化特定时间:::::::::::::::::&lt;br /&gt;DateFormat format = new SimpleDateFormat(&quot;yyyy-MM-dd&quot;);&lt;br /&gt;Date utilDate = new Date();&lt;br /&gt;java.sql.Date sqlDate = null;&lt;br /&gt;utilDate = format.parse(newValue.getString(&quot;startTime&quot;)); &lt;br /&gt;sqlDate = new java.sql.Date(utilDate.getTime());&lt;br /&gt;newValue.put(&quot;startTime&quot;, sqlDate);&lt;br /&gt;格式化当前日期::::::::::::::::::&lt;br /&gt;paramMap.put(&quot;createDateTime&quot;,new java.sql.Date(System.currentTimeMillis()));&lt;br /&gt;格式化当前日期时间::::::::::::::::::&lt;br /&gt;new &lt;img src =&quot;http://blog.csdn.net/JOE4011/aggbug/3886256.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 13 Feb 2009 19:21:00 +0800</pubDate><author>镜后人生</author><comments>http://blog.csdn.net/JOE4011/archive/2009/02/13/3886256.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2009/02/13/3886256.aspx</guid><dc:creator>镜后人生</dc:creator></item><item><title>SqlDeveloper启动时的一个错误修正</title><link>http://blog.csdn.net/JOE4011/archive/2009/01/22/3849816.aspx</link><wfw:comment>http://blog.csdn.net/JOE4011/comments/3849816.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/JOE4011/comments/commentRss/3849816.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3849816</trackback:ping><description>&lt;br /&gt;使用 SqlDeveloper v1.5.0.54.40版本，启动时报 Unable to create an instance of the Java Virtual Machine Located at path: c:\java\jdk\jre\bin\client\jvm.dll 错误&lt;br /&gt;解决方法：&lt;br /&gt;&lt;br /&gt;修改&lt;br /&gt;&lt;br /&gt;...\sqldeveloper\bin\sqldeveloper.conf 文件，&lt;br /&gt;&lt;br /&gt;其中增加一行：&lt;br /&gt;&lt;br /&gt;AddVMOption -Xmx256M&lt;br /&gt;或者减少Heap的值&lt;img src =&quot;http://blog.csdn.net/JOE4011/aggbug/3849816.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 22 Jan 2009 18:30:00 +0800</pubDate><author>镜后人生</author><comments>http://blog.csdn.net/JOE4011/archive/2009/01/22/3849816.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2009/01/22/3849816.aspx</guid><dc:creator>镜后人生</dc:creator></item><item><title>Temp表空间增长过大处理</title><link>http://blog.csdn.net/JOE4011/archive/2009/01/12/3759335.aspx</link><wfw:comment>http://blog.csdn.net/JOE4011/comments/3759335.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/JOE4011/comments/commentRss/3759335.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3759335</trackback:ping><description>&lt;br /&gt;一般遇到TEMP空间增长过大，最直接有效的办法就是重建TEMP表间。&lt;br /&gt;创建中转临时表空间&lt;br /&gt;create  temporary  tablespace  TEMP2  TEMPFILE  'D:\oracle10g\product\10.2.0\oradata\orcl\temp02.dbf'  SIZE  512M  REUSE  AUTOEXTEND  ON  NEXT  640K  MAXSIZE  UNLIMITED;&lt;br /&gt;改变缺省临时表空间  为刚刚创建的新临时表空间temp2&lt;br /&gt;alter  database  default  temporary  tablespace  temp2;&lt;br /&gt;删除原来临时表空间&lt;br /&gt;drop  tablespace  temp  including  contents &lt;img src =&quot;http://blog.csdn.net/JOE4011/aggbug/3759335.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 12 Jan 2009 21:37:00 +0800</pubDate><author>镜后人生</author><comments>http://blog.csdn.net/JOE4011/archive/2009/01/12/3759335.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2009/01/12/3759335.aspx</guid><dc:creator>镜后人生</dc:creator></item><item><title>JAVA解析XML文件四种方式</title><link>http://blog.csdn.net/JOE4011/archive/2008/09/27/2988077.aspx</link><wfw:comment>http://blog.csdn.net/JOE4011/comments/2988077.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/JOE4011/comments/commentRss/2988077.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2988077</trackback:ping><description>&lt;br /&gt;1.介绍&lt;br /&gt;1）DOM（JAXP Crimson解析器）&lt;br /&gt;DOM是用与平台和语言无关的方式表示XML文档的官方W3C标准。DOM是以层次结构组织的节点或信息片断的集合。这个层次结构允许开发人员在树中寻找特定信息。分析该结构通常需要加载整个文档和构造层次结构，然后才能做任何工作。由于它是基于信息层次的，因而DOM被认为是基于树或基于对象的。DOM以及广义的基于树的处理具有几个优点。首先，由于树在内存中是持久的，因此可以修改它以便应用程序能对数据和结构作出更改。它还可以在任何时候在树中上下导航，而不是像SAX那样是一次性的处理。DOM使用起来也要简单得多。&lt;br /&gt;2）SAX&lt;br /&gt;SAX处理的优点非常类似于流媒体的优点。分析能够立即开始，而不是等待所有的数据被处理。而且，由于应用程序只是在&lt;img src =&quot;http://blog.csdn.net/JOE4011/aggbug/2988077.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 27 Sep 2008 22:34:00 +0800</pubDate><author>镜后人生</author><comments>http://blog.csdn.net/JOE4011/archive/2008/09/27/2988077.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2008/09/27/2988077.aspx</guid><dc:creator>镜后人生</dc:creator></item><item><title>SAXReader解析XML</title><link>http://blog.csdn.net/JOE4011/archive/2008/09/18/2948317.aspx</link><wfw:comment>http://blog.csdn.net/JOE4011/comments/2948317.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/JOE4011/comments/commentRss/2948317.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2948317</trackback:ping><description>SAXReader解析XML,忽略DTD验证&lt;img src =&quot;http://blog.csdn.net/JOE4011/aggbug/2948317.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 19 Sep 2008 01:40:00 +0800</pubDate><author>镜后人生</author><comments>http://blog.csdn.net/JOE4011/archive/2008/09/18/2948317.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2008/09/18/2948317.aspx</guid><dc:creator>镜后人生</dc:creator></item><item><title>ROLLER 3.1部署开发环境</title><link>http://blog.csdn.net/JOE4011/archive/2008/04/29/2343318.aspx</link><wfw:comment>http://blog.csdn.net/JOE4011/comments/2343318.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/JOE4011/comments/commentRss/2343318.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2343318</trackback:ping><description>ROLLER 3.1部署开发环境&lt;img src =&quot;http://blog.csdn.net/JOE4011/aggbug/2343318.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 30 Apr 2008 00:29:00 +0800</pubDate><author>镜后人生</author><comments>http://blog.csdn.net/JOE4011/archive/2008/04/29/2343318.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2008/04/29/2343318.aspx</guid><dc:creator>镜后人生</dc:creator></item><item><title>SQL中查秒数的方法</title><link>http://blog.csdn.net/JOE4011/archive/2007/08/28/1761520.aspx</link><wfw:comment>http://blog.csdn.net/JOE4011/comments/1761520.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/JOE4011/comments/commentRss/1761520.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1761520</trackback:ping><description>SQL秒数&lt;img src =&quot;http://blog.csdn.net/JOE4011/aggbug/1761520.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 28 Aug 2007 17:03:00 +0800</pubDate><author>镜后人生</author><comments>http://blog.csdn.net/JOE4011/archive/2007/08/28/1761520.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2007/08/28/1761520.aspx</guid><dc:creator>镜后人生</dc:creator></item><item><title>将数据库里的某些字段的大小写的转换</title><link>http://blog.csdn.net/JOE4011/archive/2007/07/05/1679795.aspx</link><wfw:comment>http://blog.csdn.net/JOE4011/comments/1679795.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/JOE4011/comments/commentRss/1679795.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1679795</trackback:ping><description>将数据库里的某些字段的大小写的转换&lt;img src =&quot;http://blog.csdn.net/JOE4011/aggbug/1679795.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 05 Jul 2007 23:45:00 +0800</pubDate><author>镜后人生</author><comments>http://blog.csdn.net/JOE4011/archive/2007/07/05/1679795.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2007/07/05/1679795.aspx</guid><dc:creator>镜后人生</dc:creator></item><item><title>SVN使用技巧</title><link>http://blog.csdn.net/JOE4011/archive/2007/06/19/1658247.aspx</link><wfw:comment>http://blog.csdn.net/JOE4011/comments/1658247.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/JOE4011/comments/commentRss/1658247.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1658247</trackback:ping><description>SVN使用技巧&lt;img src =&quot;http://blog.csdn.net/JOE4011/aggbug/1658247.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 20 Jun 2007 01:23:00 +0800</pubDate><author>镜后人生</author><comments>http://blog.csdn.net/JOE4011/archive/2007/06/19/1658247.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2007/06/19/1658247.aspx</guid><dc:creator>镜后人生</dc:creator></item><item><title>IT人的32个好习惯</title><link>http://blog.csdn.net/JOE4011/archive/2007/06/17/1655760.aspx</link><wfw:comment>http://blog.csdn.net/JOE4011/comments/1655760.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/JOE4011/comments/commentRss/1655760.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1655760</trackback:ping><description>IT人的32个好习惯&lt;img src =&quot;http://blog.csdn.net/JOE4011/aggbug/1655760.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 18 Jun 2007 04:28:00 +0800</pubDate><author>镜后人生</author><comments>http://blog.csdn.net/JOE4011/archive/2007/06/17/1655760.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/JOE4011/archive/2007/06/17/1655760.aspx</guid><dc:creator>镜后人生</dc:creator></item></channel></rss>