<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>8only.cn-创见未来Java 世界</title>
	<atom:link href="http://www.8only.cn/archives/category/java-%e4%b8%96%e7%95%8c/feed" rel="self" type="application/rss+xml" />
	<link>http://www.8only.cn</link>
	<description>8only.cn 创意、Java、php、air、flex、Flash、Web game、生活、软件、应用</description>
	<lastBuildDate>Fri, 03 Sep 2010 02:33:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Java 面试:冒泡排序</title>
		<link>http://www.8only.cn/archives/326</link>
		<comments>http://www.8only.cn/archives/326#comments</comments>
		<pubDate>Wed, 21 Apr 2010 07:48:49 +0000</pubDate>
		<dc:creator>Benjiman</dc:creator>
				<category><![CDATA[Game]]></category>
		<category><![CDATA[Java 世界]]></category>

		<guid isPermaLink="false">http://www.8only.cn/?p=326</guid>
		<description><![CDATA[面试无数，逢试必备——冒泡排序 public class TestBubbleUp { /* 冒泡排序算法 */ public static int[] sort(int[] m) { int theLenth = m.length; /* 执行theLenth次 */ for (int i = 0; i &#60; theLenth; i++) { /* 每执行一次，将最... ]]></description>
		<wfw:commentRss>http://www.8only.cn/archives/326/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hibernate Error:org.hibernate.AssertionFailure</title>
		<link>http://www.8only.cn/archives/210</link>
		<comments>http://www.8only.cn/archives/210#comments</comments>
		<pubDate>Mon, 11 Jan 2010 07:47:35 +0000</pubDate>
		<dc:creator>Benjiman</dc:creator>
				<category><![CDATA[Java 世界]]></category>

		<guid isPermaLink="false">http://www.8only.cn/?p=210</guid>
		<description><![CDATA[最近频繁遇到Hibernate Error:org.hibernate.AssertionFailure: null id in cn.allobject.db.AReview entry (don&#8217;t flush the Session after an exception occurs) 错误原因：相信很多在看到这个错误的时候都会搜索出很多结果，... ]]></description>
		<wfw:commentRss>http://www.8only.cn/archives/210/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hibernate MySql 连接池隔天断开解决方法</title>
		<link>http://www.8only.cn/archives/206</link>
		<comments>http://www.8only.cn/archives/206#comments</comments>
		<pubDate>Wed, 23 Dec 2009 08:29:32 +0000</pubDate>
		<dc:creator>Benjiman</dc:creator>
				<category><![CDATA[Java 世界]]></category>
		<category><![CDATA[Mysql Hibernate Connection Pool]]></category>

		<guid isPermaLink="false">http://www.8only.cn/?p=206</guid>
		<description><![CDATA[最近独自写了个小项目，测试的时候都ＯＫ，放到服务器後发现隔天便会出现Error:org.hibernate.exception.JDBCConnectionException: could not execute query,几经观察，确认是数据库连接池出了问题，查了些资料... ]]></description>
		<wfw:commentRss>http://www.8only.cn/archives/206/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>以后就用Resin了～</title>
		<link>http://www.8only.cn/archives/204</link>
		<comments>http://www.8only.cn/archives/204#comments</comments>
		<pubDate>Tue, 01 Dec 2009 08:48:07 +0000</pubDate>
		<dc:creator>Benjiman</dc:creator>
				<category><![CDATA[Java 世界]]></category>

		<guid isPermaLink="false">http://www.8only.cn/?p=204</guid>
		<description><![CDATA[Tomcat用了好久，Weblogic要盗版或掏钱……，终于腻烦了，尝试用Resin,感觉不错，性能也很好。纪录两点使用上的心得： 一、配置文件：\conf\resin.conf，默认端口号为8080，在这里面可以修改端口号... ]]></description>
		<wfw:commentRss>http://www.8only.cn/archives/204/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>字符串转换为时间与数据库中时间比对的方法</title>
		<link>http://www.8only.cn/archives/202</link>
		<comments>http://www.8only.cn/archives/202#comments</comments>
		<pubDate>Wed, 25 Nov 2009 08:44:32 +0000</pubDate>
		<dc:creator>Benjiman</dc:creator>
				<category><![CDATA[Java 世界]]></category>

		<guid isPermaLink="false">http://www.8only.cn/?p=202</guid>
		<description><![CDATA[题设：startDay是一个时间的字符串：“2009-11-04” java.util.Date start = new java.util.Date(); start = Date.valueOf(startDay); 得到的start是Date类型，此时间可与数据库中的时间比对。 随机文章 Flex+Socket+Java聊天... ]]></description>
		<wfw:commentRss>http://www.8only.cn/archives/202/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>工厂模式</title>
		<link>http://www.8only.cn/archives/178</link>
		<comments>http://www.8only.cn/archives/178#comments</comments>
		<pubDate>Wed, 14 Oct 2009 01:03:09 +0000</pubDate>
		<dc:creator>Benjiman</dc:creator>
				<category><![CDATA[Java 世界]]></category>

		<guid isPermaLink="false">http://www.8only.cn/?p=178</guid>
		<description><![CDATA[原文地址：http://www.javaeye.com/topic/26455 简单工厂模式 1. 目的          工厂模式就是专门负责将大量有共同接口的类实例化,而且不必事先知道每次是要实例化哪一个类的模式。它定义一个用... ]]></description>
		<wfw:commentRss>http://www.8only.cn/archives/178/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>关于Java中serialization(序列化)</title>
		<link>http://www.8only.cn/archives/175</link>
		<comments>http://www.8only.cn/archives/175#comments</comments>
		<pubDate>Wed, 23 Sep 2009 07:51:06 +0000</pubDate>
		<dc:creator>Benjiman</dc:creator>
				<category><![CDATA[Java 世界]]></category>
		<category><![CDATA[java serialization]]></category>

		<guid isPermaLink="false">http://www.8only.cn/?p=175</guid>
		<description><![CDATA[Object serialization的定义： Object serialization 允许你将实现了Serializable接口的对象转换为字节序列，这些字节序列可以被完全存储以备以后重新生成原来的对象。  serialization不但可以在本机做，... ]]></description>
		<wfw:commentRss>http://www.8only.cn/archives/175/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java JDBC链接各种数据库手册</title>
		<link>http://www.8only.cn/archives/145</link>
		<comments>http://www.8only.cn/archives/145#comments</comments>
		<pubDate>Tue, 01 Sep 2009 09:18:34 +0000</pubDate>
		<dc:creator>Benjiman</dc:creator>
				<category><![CDATA[Java 世界]]></category>
		<category><![CDATA[JDBC]]></category>

		<guid isPermaLink="false">http://www.8only.cn/?p=145</guid>
		<description><![CDATA[一直做企业内部应用，通过Java获取用户名方法为： System.getenv(&#8220;USERNAME&#8221;)； 下面罗列了各种数据库使用JDBC连接的方式，可以作为一个手册使用。 1、Oracle8/8i/9i数据库（thin模式） Class.forN... ]]></description>
		<wfw:commentRss>http://www.8only.cn/archives/145/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java从文件路径中获取文件名的几种方法</title>
		<link>http://www.8only.cn/archives/97</link>
		<comments>http://www.8only.cn/archives/97#comments</comments>
		<pubDate>Wed, 19 Aug 2009 07:27:09 +0000</pubDate>
		<dc:creator>Benjiman</dc:creator>
				<category><![CDATA[Java 世界]]></category>
		<category><![CDATA[java获取文件名]]></category>

		<guid isPermaLink="false">http://www.8only.cn/?p=97</guid>
		<description><![CDATA[举例：String fName =&#8221; G:\Java_Source\navigation_tigra_menu\demo1\img\lev1_arrow.gif &#8221; 方法一： ?View Code JAVA1 2 3 File tempFile =new File&#40; fName.trim&#40;&#41;&#41;; &#160; String fileName = tempFile.getName&#40;&#41;; 方法... ]]></description>
		<wfw:commentRss>http://www.8only.cn/archives/97/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Java 程序员必备的 Jar 包搜索引擎: findJar.com</title>
		<link>http://www.8only.cn/archives/38</link>
		<comments>http://www.8only.cn/archives/38#comments</comments>
		<pubDate>Thu, 06 Aug 2009 14:05:36 +0000</pubDate>
		<dc:creator>Benjiman</dc:creator>
				<category><![CDATA[Java 世界]]></category>
		<category><![CDATA[findJar]]></category>
		<category><![CDATA[Java Search Engine]]></category>

		<guid isPermaLink="false">http://www.8only.cn/archives/38</guid>
		<description><![CDATA[Java之所以在世界范围内掀起巨大的狂潮，很大程度得益于它的开源及因此带来的社区框架支援。 应用外部类库开发Java应用早已经是家常便饭了。那么，当遇到Jar缺少，而面对错误信息手足无... ]]></description>
		<wfw:commentRss>http://www.8only.cn/archives/38/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
