﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><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>BlogJava-残梦追月-最新评论</title><link>http://www.blogjava.net/cmzy/CommentsRSS.aspx</link><description>残梦追月的java博客&amp;nbsp;&amp;nbsp;&amp;nbsp     
&lt;br/&gt;准备逃离ing……の
</description><language>zh-cn</language><pubDate>Sat, 05 Jan 2013 16:13:22 GMT</pubDate><lastBuildDate>Sat, 05 Jan 2013 16:13:22 GMT</lastBuildDate><generator>cnblogs</generator><item><title>re: Hibernate unexpected end of subtree异常解决办法</title><link>http://www.blogjava.net/cmzy/archive/2012/12/29/213799.html#393604</link><dc:creator>hql是什么</dc:creator><author>hql是什么</author><pubDate>Sat, 29 Dec 2012 04:56:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2012/12/29/213799.html#393604</guid><description><![CDATA[hql是什么，这个问题就这么解决了？<img src ="http://www.blogjava.net/cmzy/aggbug/393604.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">hql是什么</a> 2012-12-29 12:56 <a href="http://www.blogjava.net/cmzy/archive/2012/12/29/213799.html#393604#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring Autowire自动装配 </title><link>http://www.blogjava.net/cmzy/archive/2012/12/16/216176.html#393067</link><dc:creator>Join</dc:creator><author>Join</author><pubDate>Sun, 16 Dec 2012 12:10:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2012/12/16/216176.html#393067</guid><description><![CDATA[不错，很清晰<br><img src ="http://www.blogjava.net/cmzy/aggbug/393067.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">Join</a> 2012-12-16 20:10 <a href="http://www.blogjava.net/cmzy/archive/2012/12/16/216176.html#393067#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 短信中的的UCS2的编码与解码方法（java）……</title><link>http://www.blogjava.net/cmzy/archive/2012/07/07/250102.html#382463</link><dc:creator>Tml</dc:creator><author>Tml</author><pubDate>Sat, 07 Jul 2012 08:11:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2012/07/07/250102.html#382463</guid><description><![CDATA[如何获取字符串的UCS2 0x81 编码？<img src ="http://www.blogjava.net/cmzy/aggbug/382463.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">Tml</a> 2012-07-07 16:11 <a href="http://www.blogjava.net/cmzy/archive/2012/07/07/250102.html#382463#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: java大数加法[未登录]</title><link>http://www.blogjava.net/cmzy/archive/2012/05/31/258775.html#379694</link><dc:creator>helloworld</dc:creator><author>helloworld</author><pubDate>Thu, 31 May 2012 14:19:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2012/05/31/258775.html#379694</guid><description><![CDATA[package acm1000;<br><br>import java.util.Scanner;<br><br>public class Main<br>{<br>	public static void main(String[] args)<br>	{<br>		// TODO Auto-generated method stub<br>		Scanner sc = new Scanner(System.in);<br>		String s1, s2;<br>		String SUM = &quot;&quot;;<br>		int t;<br>		int a, b;<br>		int num;<br>		num = sc.nextInt();<br>		boolean j = false;<br>		int n = 0;<br>		do<br>		{<br>			s1 = sc.next();<br>			s2 = sc.next();<br>			System.out.println(&quot;Case &quot; + ++n + &quot;:&quot;);<br>			System.out.print(s1 + &quot; + &quot; + s2 + &quot; = &quot;);<br>			SUM = &quot;&quot;;<br>			a = s1.length();<br>			b = s2.length();<br><br>			if (a &lt;= b)<br>			{<br><br>				String splus = &quot;&quot;;<br>				for (int p = 0; p &lt; b - a; p++)<br>					splus += &quot;0&quot;;<br>				s1 = splus + s1;<br><br>				a = b;<br>				t = a;<br>			}<br>			else<br>			{<br>				String splus = &quot;&quot;;<br>				for (int p = 0; p &lt; a - b; p++)<br>					splus += &quot;0&quot;;<br>				s2 = splus + s2;<br>				b = a;<br>				t = a;<br>			}<br>			j = false;<br>			for (int i = 0; i &lt;= t; i++)<br>			{<br><br>				if ((s1.length() &gt; 0))<br>				{<br>					String c;<br>					c = &quot;&quot; + s1.substring(a - 1, a);<br>					String d = s2.substring(a - 1, a);<br>					s1 = s1.substring(0, a - 1);<br>					s2 = s2.substring(0, a - 1);<br>					a--;<br>					int cToInt = Integer.parseInt(c);<br>					int dToInt = Integer.parseInt(d);<br><br>					int sum = cToInt + dToInt;<br><br>					if (j == true)<br>					{<br>						sum = sum + 1;<br>					}<br>					if (sum &gt;= 10)<br>					{<br>						j = true;<br>						sum = sum - 10;<br>					}<br>					else if (sum &lt; 10)<br>						j = false;<br>					SUM = sum + SUM;<br>				}<br>			}<br>			if (j)<br>				SUM = 1 + SUM;<br>			System.out.println(SUM);<br>			System.out.println();<br>		}<br>		while (--num != 0);<br>	}<br><br>}<br><br><br>同JAVA，好像思想上跟你的第二个差不多。<img src ="http://www.blogjava.net/cmzy/aggbug/379694.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">helloworld</a> 2012-05-31 22:19 <a href="http://www.blogjava.net/cmzy/archive/2012/05/31/258775.html#379694#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring Autowire自动装配 </title><link>http://www.blogjava.net/cmzy/archive/2012/04/19/216176.html#375253</link><dc:creator>fashion_ly</dc:creator><author>fashion_ly</author><pubDate>Thu, 19 Apr 2012 04:30:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2012/04/19/216176.html#375253</guid><description><![CDATA[写的不错<img src ="http://www.blogjava.net/cmzy/aggbug/375253.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">fashion_ly</a> 2012-04-19 12:30 <a href="http://www.blogjava.net/cmzy/archive/2012/04/19/216176.html#375253#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Could not load java.net.BindException异常的解决办法</title><link>http://www.blogjava.net/cmzy/archive/2012/04/06/261884.html#373451</link><dc:creator>阿斯顿</dc:creator><author>阿斯顿</author><pubDate>Fri, 06 Apr 2012 03:57:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2012/04/06/261884.html#373451</guid><description><![CDATA[尼玛，%TOMCAT_HOME%\lib 这个东西是啥、说又不说清楚<img src ="http://www.blogjava.net/cmzy/aggbug/373451.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">阿斯顿</a> 2012-04-06 11:57 <a href="http://www.blogjava.net/cmzy/archive/2012/04/06/261884.html#373451#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 发现了Spring2.5里的一个新东西, BeanPropertyRowMapper类。[未登录]</title><link>http://www.blogjava.net/cmzy/archive/2012/03/12/228271.html#371730</link><dc:creator>rover</dc:creator><author>rover</author><pubDate>Mon, 12 Mar 2012 07:18:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2012/03/12/228271.html#371730</guid><description><![CDATA[如果有下划线，也会自动被转化成camel命名法....<img src ="http://www.blogjava.net/cmzy/aggbug/371730.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">rover</a> 2012-03-12 15:18 <a href="http://www.blogjava.net/cmzy/archive/2012/03/12/228271.html#371730#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 放一个CHM格式的Spring2.5.5的API文档和源代码</title><link>http://www.blogjava.net/cmzy/archive/2012/03/07/221056.html#371374</link><dc:creator>jxk</dc:creator><author>jxk</author><pubDate>Wed, 07 Mar 2012 01:36:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2012/03/07/221056.html#371374</guid><description><![CDATA[谢谢<img src ="http://www.blogjava.net/cmzy/aggbug/371374.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">jxk</a> 2012-03-07 09:36 <a href="http://www.blogjava.net/cmzy/archive/2012/03/07/221056.html#371374#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring Autowire自动装配 </title><link>http://www.blogjava.net/cmzy/archive/2012/02/20/216176.html#370344</link><dc:creator>谭杰希</dc:creator><author>谭杰希</author><pubDate>Mon, 20 Feb 2012 06:22:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2012/02/20/216176.html#370344</guid><description><![CDATA[老纳法号乱来！<img src ="http://www.blogjava.net/cmzy/aggbug/370344.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">谭杰希</a> 2012-02-20 14:22 <a href="http://www.blogjava.net/cmzy/archive/2012/02/20/216176.html#370344#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring Autowire自动装配 [未登录]</title><link>http://www.blogjava.net/cmzy/archive/2011/12/29/216176.html#367469</link><dc:creator>jiang</dc:creator><author>jiang</author><pubDate>Thu, 29 Dec 2011 02:49:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2011/12/29/216176.html#367469</guid><description><![CDATA[通俗易懂，顶一个。<img src ="http://www.blogjava.net/cmzy/aggbug/367469.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">jiang</a> 2011-12-29 10:49 <a href="http://www.blogjava.net/cmzy/archive/2011/12/29/216176.html#367469#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 在Spring+hibernate中不能释放tomcat连接池中连接的解决办法</title><link>http://www.blogjava.net/cmzy/archive/2011/11/08/215032.html#363151</link><dc:creator>贝壳里的海</dc:creator><author>贝壳里的海</author><pubDate>Tue, 08 Nov 2011 02:22:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2011/11/08/215032.html#363151</guid><description><![CDATA[学习了，今天刚好遇到这样的问题，JBoss里的配置貌似也很重要<img src ="http://www.blogjava.net/cmzy/aggbug/363151.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">贝壳里的海</a> 2011-11-08 10:22 <a href="http://www.blogjava.net/cmzy/archive/2011/11/08/215032.html#363151#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 在Spring+hibernate中不能释放tomcat连接池中连接的解决办法</title><link>http://www.blogjava.net/cmzy/archive/2011/09/30/215032.html#359864</link><dc:creator>showzh</dc:creator><author>showzh</author><pubDate>Fri, 30 Sep 2011 07:53:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2011/09/30/215032.html#359864</guid><description><![CDATA[不管用<img src ="http://www.blogjava.net/cmzy/aggbug/359864.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">showzh</a> 2011-09-30 15:53 <a href="http://www.blogjava.net/cmzy/archive/2011/09/30/215032.html#359864#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: java大数加法</title><link>http://www.blogjava.net/cmzy/archive/2011/07/09/258775.html#353989</link><dc:creator>eraser0</dc:creator><author>eraser0</author><pubDate>Sat, 09 Jul 2011 09:16:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2011/07/09/258775.html#353989</guid><description><![CDATA[一般这种题目就是考细心而已啦。。。话说用BigInteger的话还算面试题目吗。。。UCweb在广州也只能算一般啦，其实。。。<img src ="http://www.blogjava.net/cmzy/aggbug/353989.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">eraser0</a> 2011-07-09 17:16 <a href="http://www.blogjava.net/cmzy/archive/2011/07/09/258775.html#353989#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 短信中的的UCS2的编码与解码方法（java）……</title><link>http://www.blogjava.net/cmzy/archive/2011/06/03/250102.html#351654</link><dc:creator>bjx</dc:creator><author>bjx</author><pubDate>Fri, 03 Jun 2011 02:20:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2011/06/03/250102.html#351654</guid><description><![CDATA[谢谢楼主,怎么使用,我不懂<img src ="http://www.blogjava.net/cmzy/aggbug/351654.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">bjx</a> 2011-06-03 10:20 <a href="http://www.blogjava.net/cmzy/archive/2011/06/03/250102.html#351654#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring Autowire自动装配 </title><link>http://www.blogjava.net/cmzy/archive/2011/04/10/216176.html#347994</link><dc:creator>Jonn</dc:creator><author>Jonn</author><pubDate>Sun, 10 Apr 2011 03:33:00 GMT</pubDate><guid>http://www.blogjava.net/cmzy/archive/2011/04/10/216176.html#347994</guid><description><![CDATA[写的真的不错啊！呵呵 顶<img src ="http://www.blogjava.net/cmzy/aggbug/347994.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/cmzy/" target="_blank">Jonn</a> 2011-04-10 11:33 <a href="http://www.blogjava.net/cmzy/archive/2011/04/10/216176.html#347994#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>