<?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>CODIGG &#187; JAVA</title>
	<atom:link href="http://www.codigg.com/category/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codigg.com</link>
	<description>关注互联网，关注云计算，关注生活</description>
	<lastBuildDate>Fri, 08 Jul 2011 02:48:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ActiveMQ: How to set property in BrokerFilter</title>
		<link>http://www.codigg.com/2010/12/activemq-how-to-set-property-in-brokerfilter/</link>
		<comments>http://www.codigg.com/2010/12/activemq-how-to-set-property-in-brokerfilter/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 02:18:48 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[ActiveMQ]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=830</guid>
		<description><![CDATA[在ActiveMQ的BrokerFilter中，如果调用setProperty设置了属性，在consumer中收到后是没有的，这个问题一两年前就有人提，参见 google 搜索结果 。而设置其属性，如setGroupId等，则有效。

查看了ActiveMQ的源码，发现传输中属性和setProperties调用的不是一个对象,前者(marshalledProperties)是用于传输的，后者(properties)是读取和设置的：



?View Code JAVAprotected ByteSequence marshalledProperties;

protected Map properties;

<span class="readmore"><a href="http://www.codigg.com/2010/12/activemq-how-to-set-property-in-brokerfilter/" title="ActiveMQ: How to set property in BrokerFilter">阅读全文——共1172字</a></span><h3>相关文章</h3><ul><li>0</li></ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://carlo.net.pl" >Hale Namiotowe</a> : <a class="comment_content" href="http://www.codigg.com/2010/12/activemq-how-to-set-property-in-brokerfilter/#comment-212984" title="View the entire comment by Hale Namiotowe" >My husband and i have been now glad  Emmanuel mana...</a></li>
<li><a class="commentor" href="https://forum.geliyoo.com" >Webmaster Forum</a> : <a class="comment_content" href="http://www.codigg.com/2010/12/activemq-how-to-set-property-in-brokerfilter/#comment-212982" title="View the entire comment by Webmaster Forum" >i bookmarked you in my browser admin thank you so ...</a></li>
<li><a class="commentor" href="http://parentalrespect.org/" >convertxtodvd here</a> : <a class="comment_content" href="http://www.codigg.com/2010/12/activemq-how-to-set-property-in-brokerfilter/#comment-212736" title="View the entire comment by convertxtodvd here" >What's up vso convertxtodvd key superb post vso co...</a></li>
<li><a class="commentor" href="http://www.beyintumorubelirtileri.com/" >beyin tümörü belirtileri</a> : <a class="comment_content" href="http://www.codigg.com/2010/12/activemq-how-to-set-property-in-brokerfilter/#comment-212131" title="View the entire comment by beyin tümörü belirtileri" >oh my god fantastic article admin will test your b...</a></li>
<li><a class="commentor" href="http://www.pomocdrogowagorzow.pl/" >Pomoc Drogowa Gorzow</a> : <a class="comment_content" href="http://www.codigg.com/2010/12/activemq-how-to-set-property-in-brokerfilter/#comment-209790" title="View the entire comment by Pomoc Drogowa Gorzow" >I like the helpful info you provide in your articl...</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/12/activemq-how-to-set-property-in-brokerfilter/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Java程序内存分析:JMap与Eclipse Memory Analyzer</title>
		<link>http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/</link>
		<comments>http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 03:57:16 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[jmap]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[outofmemory]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=788</guid>
		<description><![CDATA[<a href="http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/"><img align="left" hspace="5" width="150" height="150" src="http://www.codigg.com/wp-content/uploads/2010/07/mat1-150x150.jpg" class="alignleft wp-post-image tfe" alt="" title="mat1" /></a>当程序中内存使用过多，或者存在内存泄露时，经常会报OutOfMemory错误。很多时候，尤其是在生产环境中，不得不马上重启服务，导致现场丢失，无法查找问题所在。

其实jdk中自带了很多分析监控工具，jmap就是其中之一。

当程序出现问题，先不要停止服务，先用ps看一下java的pid, 然后运行命令将内存导出来：



?View Code BASH/usr/local/jdk1.6.0_20/bin/jmap -dump:format=b,file=/dir/heap.bin

<span class="readmore"><a href="http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/" title="Java程序内存分析:JMap与Eclipse Memory Analyzer">阅读全文——共407字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/" title="lighttpd不支持Expect: 100-continue的解决办法 2010.04.13">lighttpd不支持Expect: 100-continue的解决办法</a>(67)</li>
<li><a href="http://www.codigg.com/2010/01/php-aes-java-encrypt-decrypt/" title="php版的AES算法（可与java兼容） 2010.01.21">php版的AES算法（可与java兼容）</a>(115)</li>
<li><a href="http://www.codigg.com/2009/12/qinghuaci-java/" title="青花瓷 java版 2009.12.30">青花瓷 java版</a>(70)</li>
<li><a href="http://www.codigg.com/2009/08/java-exception-code-method/" title="你的java代码够土吗？ 2009.08.10">你的java代码够土吗？</a>(56)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://parklandinstitute.ca/member/12751" >Lacey Mad</a> : <a class="comment_content" href="http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/#comment-212645" title="View the entire comment by Lacey Mad" >Very useful publish here. Thanks for sharing your ...</a></li>
<li><a class="commentor" href="http://redyeastrice.blog.fc2.com/blog-entry-2.html" >side effects of red yeast rice</a> : <a class="comment_content" href="http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/#comment-210808" title="View the entire comment by side effects of red yeast rice" >May I simply say what a relief to find someone who...</a></li>
<li><a class="commentor" href="http://www.pomocdrogowagorzow.pl/" >Gorzow Wielkopolski</a> : <a class="comment_content" href="http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/#comment-209638" title="View the entire comment by Gorzow Wielkopolski" >I simply had to thank you so much once again. I am...</a></li>
<li><a class="commentor" href="http://www.123.vvcvv.waw.pl/" >Lionel Townson</a> : <a class="comment_content" href="http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/#comment-206274" title="View the entire comment by Lionel Townson" >˙ţC</a></li>
<li><a class="commentor" href="http://thirdeyelight.weebly.com/" >Kaiden</a> : <a class="comment_content" href="http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/#comment-205436" title="View the entire comment by Kaiden" >This piece of writing about SEO is really good one...</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>青花瓷 java版</title>
		<link>http://www.codigg.com/2009/12/qinghuaci-java/</link>
		<comments>http://www.codigg.com/2009/12/qinghuaci-java/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 17:00:05 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[青花瓷]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=566</guid>
		<description><![CDATA[“青花瓷Java版”为北京师范大学教育学部蔡苏作词原创，覆盖教育技术学院专业选修课《面向对象程序设计》教学大纲中的所有知识点。感谢周杰伦作曲，伊格格演唱，崔振锋和洪子叶制作。enjoy it。

&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;

青花瓷（Java版）

词：蔡苏

曲：周杰伦

<span class="readmore"><a href="http://www.codigg.com/2009/12/qinghuaci-java/" title="青花瓷 java版">阅读全文——共590字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/" title="Java程序内存分析:JMap与Eclipse Memory Analyzer 2010.07.27">Java程序内存分析:JMap与Eclipse Memory Analyzer</a>(10)</li>
<li><a href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/" title="lighttpd不支持Expect: 100-continue的解决办法 2010.04.13">lighttpd不支持Expect: 100-continue的解决办法</a>(67)</li>
<li><a href="http://www.codigg.com/2010/01/php-aes-java-encrypt-decrypt/" title="php版的AES算法（可与java兼容） 2010.01.21">php版的AES算法（可与java兼容）</a>(115)</li>
<li><a href="http://www.codigg.com/2009/08/java-exception-code-method/" title="你的java代码够土吗？ 2009.08.10">你的java代码够土吗？</a>(56)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://djstools.com/cerca/impact-twin" >impact twin</a> : <a class="comment_content" href="http://www.codigg.com/2009/12/qinghuaci-java/#comment-213937" title="View the entire comment by impact twin" >Fantastic blog! Great!</a></li>
<li><a class="commentor" href="http://www.sohbetederiz.com/" >sohbet</a> : <a class="comment_content" href="http://www.codigg.com/2009/12/qinghuaci-java/#comment-213801" title="View the entire comment by sohbet" >Good a single web site manager good results blog s...</a></li>
<li><a class="commentor" href="http://www.iamsport.org/pg/blog/jeanboyle1128/read/1823218/prendi-carta-medical-cannabiscannabis-for-medical-use-per-ricevere-le-cure-marijuana-weed" >seeds of cannabis</a> : <a class="comment_content" href="http://www.codigg.com/2009/12/qinghuaci-java/#comment-213515" title="View the entire comment by seeds of cannabis" >Certainly there are many captivating issues throug...</a></li>
<li><a class="commentor" href="http://www.graphicbomb.com" >Paulita Boe</a> : <a class="comment_content" href="http://www.codigg.com/2009/12/qinghuaci-java/#comment-213302" title="View the entire comment by Paulita Boe" >Again and again and again I think about this diffi...</a></li>
<li><a class="commentor" href="http://darmowedzwonienie.pl" >VoipDiscount</a> : <a class="comment_content" href="http://www.codigg.com/2009/12/qinghuaci-java/#comment-213034" title="View the entire comment by VoipDiscount" >Hey there! I just wanted to ask if you ever have a...</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2009/12/qinghuaci-java/feed/</wfw:commentRss>
		<slash:comments>70</slash:comments>
		</item>
		<item>
		<title>struts2 junit plugin</title>
		<link>http://www.codigg.com/2009/08/struts2-junit-plugin-spring/</link>
		<comments>http://www.codigg.com/2009/08/struts2-junit-plugin-spring/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 06:54:43 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[junit]]></category>
		<category><![CDATA[struts2]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=444</guid>
		<description><![CDATA[从 struts2官网 下载的struts2-junit-plugin-2.1.6.jar ，并不能完成 http://cwiki.apache.org/WW/testing-actions.html 一文中所描述的功能。看了一下struts2-2.1.6的源码，不具备executeAction、getActionMapping等方法。

可能是wiki和源码没有同步更新吧。

这里提供一个可以支持getActionMapping等方法的strtus2-junit-plugin。

jar包下载： struts2-junit-plugin-2.1.6.jar

源码（maven工程）下载：struts2-junit-plugin-source.zip

<span class="readmore"><a href="http://www.codigg.com/2009/08/struts2-junit-plugin-spring/" title="struts2 junit plugin">阅读全文——共393字</a></span><h3>相关文章</h3><ul><li>0</li></ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://udlvids.com/how-to-download-videos-from-dailymotion-free-and-fast/" >download in daily motion</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/struts2-junit-plugin-spring/#comment-214046" title="View the entire comment by download in daily motion" >Greetings! I really wishes to give a enormous "thu...</a></li>
<li><a class="commentor" href="http://www.etifilokiralama.com/" >filo kiralama</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/struts2-junit-plugin-spring/#comment-213566" title="View the entire comment by filo kiralama" >Greetings thanks for fantastic article i used to b...</a></li>
<li><a class="commentor" href="http://carlo.net.pl" >Namioty Handlowe Warszawa</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/struts2-junit-plugin-spring/#comment-213060" title="View the entire comment by Namioty Handlowe Warszawa" >You made some clear points there. I did a search o...</a></li>
<li><a class="commentor" href="http://www.brightonswim.com/how-to-convert-ogm-avi-wmv-to-dvd/" >vso convertxtodvd link</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/struts2-junit-plugin-spring/#comment-212712" title="View the entire comment by vso convertxtodvd link" >What's up vso convertxtodvd 4 key really good eval...</a></li>
<li><a class="commentor" href="http://osc3.template-help.com/forum_16196/profile.php?mode=viewprofile&amp;u=21577" >Fredric Roesler</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/struts2-junit-plugin-spring/#comment-212641" title="View the entire comment by Fredric Roesler" >Rattling excellent visual appeal on this website ,...</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2009/08/struts2-junit-plugin-spring/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Kaptcha : 比jCaptcha还简单的Java验证码组件</title>
		<link>http://www.codigg.com/2009/08/kaptcha-jcaptcha-java/</link>
		<comments>http://www.codigg.com/2009/08/kaptcha-jcaptcha-java/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 11:13:38 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[Kaptcha]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=423</guid>
		<description><![CDATA[<a href="http://www.codigg.com/2009/08/kaptcha-jcaptcha-java/"><img align="left" hspace="5" width="150" src="kaptcha.jpg" class="alignleft wp-post-image tfe" alt="" title="" /></a>jCaptcha是很多Java开发者使用的验证码组件，但是默认的配置相对有点恶心，而且使用也不够精简；于是有人开发了一个simplecaptcha，但是据说BUG很多。这里推荐一个非常简单的验证码组件：Kaptcha 。

使用方法：



到http://code.google.com/p/kaptcha/ 下载jar文件到 WEB-INF/lib目录下

在web.xml中配置servlet：

<span class="readmore"><a href="http://www.codigg.com/2009/08/kaptcha-jcaptcha-java/" title="Kaptcha : 比jCaptcha还简单的Java验证码组件">阅读全文——共404字</a></span><h3>相关文章</h3><ul><li>0</li></ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://vidvain.com/hyip-investment" >hyip investment</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/kaptcha-jcaptcha-java/#comment-214103" title="View the entire comment by hyip investment" >Hey There. I found your blog using msn. This is a ...</a></li>
<li><a class="commentor" href="http://oandroidapps.blogspot.com/p/grabatron-future.html" >grabatron app android</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/kaptcha-jcaptcha-java/#comment-213174" title="View the entire comment by grabatron app android" >I got what you impart, thanks for swing up. Woh I ...</a></li>
<li><a class="commentor" href="http://www.pointerhoops.com/the-bestvideo-file-converter-software/" >download convertxtodvd here</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/kaptcha-jcaptcha-java/#comment-212821" title="View the entire comment by download convertxtodvd here" >Hi dee hi vso convertxtodvd keygen beneficial cont...</a></li>
<li><a class="commentor" href="http://pigeonmails.info/forum/index.php?action=profile;u=49668" >Rodolfo Tagalog</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/kaptcha-jcaptcha-java/#comment-212725" title="View the entire comment by Rodolfo Tagalog" >Great blog. make party with our girls and rejoice ...</a></li>
<li><a class="commentor" href="http://dandroidappe.blogspot.com/2012/01/jelly-defense-infinite-dreams-apk.html" >jelly defense apk download</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/kaptcha-jcaptcha-java/#comment-212623" title="View the entire comment by jelly defense apk download" >I got what you plan, thanks for putting up. Woh I ...</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2009/08/kaptcha-jcaptcha-java/feed/</wfw:commentRss>
		<slash:comments>53</slash:comments>
		</item>
		<item>
		<title>你的java代码够土吗？</title>
		<link>http://www.codigg.com/2009/08/java-exception-code-method/</link>
		<comments>http://www.codigg.com/2009/08/java-exception-code-method/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 10:47:33 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[JAVA]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=420</guid>
		<description><![CDATA[今天在水木上看到一篇文章，原来自己那么多年写的代码都是如此的圡。



?View Code JAVApublic class T&#123;

     // 这里编译时是会报错的：unreported exception

     private String s = intS&#40;&#41;;

<span class="readmore"><a href="http://www.codigg.com/2009/08/java-exception-code-method/" title="你的java代码够土吗？">阅读全文——共443字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/07/java-jmap-eclipse-memory-analyzer/" title="Java程序内存分析:JMap与Eclipse Memory Analyzer 2010.07.27">Java程序内存分析:JMap与Eclipse Memory Analyzer</a>(10)</li>
<li><a href="http://www.codigg.com/2010/04/lighttpd-expect-100-417-continue/" title="lighttpd不支持Expect: 100-continue的解决办法 2010.04.13">lighttpd不支持Expect: 100-continue的解决办法</a>(67)</li>
<li><a href="http://www.codigg.com/2010/01/php-aes-java-encrypt-decrypt/" title="php版的AES算法（可与java兼容） 2010.01.21">php版的AES算法（可与java兼容）</a>(115)</li>
<li><a href="http://www.codigg.com/2009/12/qinghuaci-java/" title="青花瓷 java版 2009.12.30">青花瓷 java版</a>(70)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://www.latinadatingcam.com/blogs/entry/Ideal-method-to-compare-credit-cards" >Roman Bentler</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/java-exception-code-method/#comment-214216" title="View the entire comment by Roman Bentler" >No ought to look at other web pages now, everythin...</a></li>
<li><a class="commentor" href="http://udlvids.com/how-to-download-videos-from-dailymotion-free-and-fast/" >daily motion download</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/java-exception-code-method/#comment-214052" title="View the entire comment by daily motion download" >This unique internet page truly helped with my iss...</a></li>
<li><a class="commentor" href="http://www.litigationfinancereport.com/mediawiki/index.php?title=UsuallybeHairthinningTreatmentMerchandiseDependableOrjustAnextraNotion" >Ronnie Fore</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/java-exception-code-method/#comment-213894" title="View the entire comment by Ronnie Fore" >Some really   choice   articles  on this  internet...</a></li>
<li><a class="commentor" href="http://www.cmonsterbeats.com/monster-beats-solo-c-38.html" >MymnReelync</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/java-exception-code-method/#comment-213435" title="View the entire comment by MymnReelync" >game play find out extra verified monster beats in...</a></li>
<li><a class="commentor" href="http://www.artslant.com/ew/groups/show/448924" >seeds of cannabis</a> : <a class="comment_content" href="http://www.codigg.com/2009/08/java-exception-code-method/#comment-213252" title="View the entire comment by seeds of cannabis" >It’s difficult to find expert people with this nic...</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2009/08/java-exception-code-method/feed/</wfw:commentRss>
		<slash:comments>56</slash:comments>
		</item>
		<item>
		<title>搜狐白社会阳光牧场（开心农场）外挂之登录部分源码</title>
		<link>http://www.codigg.com/2009/06/sohu-sns-bai-login-code-java/</link>
		<comments>http://www.codigg.com/2009/06/sohu-sns-bai-login-code-java/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 16:51:52 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[搜狐]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=371</guid>
		<description><![CDATA[很多网友问到登录过程，我这里放一点相关的代码上来吧。大家集中的问题主要有几个：

Q: 密码的md5算法是怎样的

A: 这个算法我稍后给出来

Q: 登录时有几个参数不知是什么意思，如何计算出来

A: 这些参数未必有意义，根据形式，可以大概伪造一下，成功率一般都是90%以上

<span class="readmore"><a href="http://www.codigg.com/2009/06/sohu-sns-bai-login-code-java/" title="搜狐白社会阳光牧场（开心农场）外挂之登录部分源码">阅读全文——共1745字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2009/06/farmer-gui-swt/" title="开心农场外挂进度：6月5日 2009.06.6">开心农场外挂进度：6月5日</a>(144)</li>
<li><a href="http://www.codigg.com/2009/06/sohu-bai-farm-bug/" title="搜狐白社会阳光牧场有小bug 2009.06.4">搜狐白社会阳光牧场有小bug</a>(157)</li>
<li><a href="http://www.codigg.com/2009/05/sohu-sns-bai/" title="搜狐进军SNS：白社会5月底将开放注册 2009.05.24">搜狐进军SNS：白社会5月底将开放注册</a>(73)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://petiteteenager.weddingannouncer.com" >Rauyzljx</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/sohu-sns-bai-login-code-java/#comment-214287" title="View the entire comment by Rauyzljx" >Get a job petiteteenager  8[[ bigasses  djsec vo...</a></li>
<li><a class="commentor" href="http://www.netvibes.com/aqirebapit#Little_slut_models" >Ytdinytz</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/sohu-sns-bai-login-code-java/#comment-214269" title="View the entire comment by Ytdinytz" >Accountant supermarket manager thai bikini model  ...</a></li>
<li><a class="commentor" href="http://snuffx.weddingannouncer.com" >Faqcnvan</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/sohu-sns-bai-login-code-java/#comment-214205" title="View the entire comment by Faqcnvan" >Please call back later snuffx  %-))) domai  3865...</a></li>
<li><a class="commentor" href="http://adultsex.weddingannouncer.com" >Uzeqaqvd</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/sohu-sns-bai-login-code-java/#comment-214184" title="View the entire comment by Uzeqaqvd" >I enjoy travelling wetpussy  mlv adultsex  8-[[ ...</a></li>
<li><a class="commentor" href="http://smeargle.olecko.pl/?p=12" >serwis olympus</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/sohu-sns-bai-login-code-java/#comment-214151" title="View the entire comment by serwis olympus" >Reaayl? ?</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2009/06/sohu-sns-bai-login-code-java/feed/</wfw:commentRss>
		<slash:comments>405</slash:comments>
		</item>
		<item>
		<title>flash实现的关系图（来自腾讯soso）</title>
		<link>http://www.codigg.com/2009/06/flash-relation-chart/</link>
		<comments>http://www.codigg.com/2009/06/flash-relation-chart/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 12:53:29 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[腾讯]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=355</guid>
		<description><![CDATA[<a href="http://www.codigg.com/2009/06/flash-relation-chart/"><img align="left" hspace="5" width="150" height="150" src="http://www.codigg.com/wp-content/uploads/2009/06/rflash-150x150.jpg" class="alignleft wp-post-image tfe" alt="rflash" title="rflash" /></a>上图是腾讯soso网站上的人物关系图，其原理估计是在各种网页中识别人名、提取关键字，然后生成数据。当然也有更好或者更土鳖的方法。从创意上看，可能（未经过考证）是模仿了Google罗盘，如搜索 “uchome 内存 泄露”  。

我想很多SNS网站都希望做出这样的效果，来描述用户及其好友之间的发现关系。如何把这个flash剥离下来用到自己的网站上呢？

这个swf可以通过迅雷直接下载，它接收的参数如下：



tagkeyword：搜索的关键词，如：陈冠希

<span class="readmore"><a href="http://www.codigg.com/2009/06/flash-relation-chart/" title="flash实现的关系图（来自腾讯soso）">阅读全文——共2481字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2010/04/qq-twitter-watermark/" title="腾讯微博草根认证（头像水印制作） 2010.04.14">腾讯微博草根认证（头像水印制作）</a>(30)</li>
<li><a href="http://www.codigg.com/2010/04/tencent-twitter-invite-code-free/" title="腾讯微博邀请免费发放 2010.04.14">腾讯微博邀请免费发放</a>(23)</li>
<li><a href="http://www.codigg.com/2010/03/qq-mail-login-page/" title="QQ邮箱登录今天的新界面 2010.03.31">QQ邮箱登录今天的新界面</a>(21)</li>
<li><a href="http://www.codigg.com/2010/03/tencent-qq-security/" title="使用腾讯QQ聊天安全吗？ 2010.03.31">使用腾讯QQ聊天安全吗？</a>(20)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://oandroidapps.blogspot.com/p/grabatron-future.html" >grabatron app android</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/flash-relation-chart/#comment-214247" title="View the entire comment by grabatron app android" >This is the penalise flashå®žçŽ°çš„å…³ç³»å›¾ï¼ˆæ¥...</a></li>
<li><a class="commentor" href="http://vidvain.com/hyip-investment" >hyip investment</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/flash-relation-chart/#comment-213967" title="View the entire comment by hyip investment" >Hey There. I found your blog using msn. This is a ...</a></li>
<li><a class="commentor" href="http://ecashhyip.com/" >liberty reserve</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/flash-relation-chart/#comment-213644" title="View the entire comment by liberty reserve" >This is the penalise flashå®žçŽ°çš„å…³ç³»å›¾ï¼ˆæ¥...</a></li>
<li><a class="commentor" href="http://ozinengland.com/" >liberty reserve</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/flash-relation-chart/#comment-213375" title="View the entire comment by liberty reserve" >This is the turn flashå®žçŽ°çš„å…³ç³»å›¾ï¼ˆæ¥è‡ªè...</a></li>
<li><a class="commentor" href="http://www.pointerhoops.com/" >convertxtodvd here</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/flash-relation-chart/#comment-212740" title="View the entire comment by convertxtodvd here" >Hi all convertxtodvd free nice content page vso so...</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2009/06/flash-relation-chart/feed/</wfw:commentRss>
		<slash:comments>47</slash:comments>
		</item>
		<item>
		<title>JDK1.6.0 update 14发布，部分功能需要付费使用</title>
		<link>http://www.codigg.com/2009/06/jdk160-update-14-release/</link>
		<comments>http://www.codigg.com/2009/06/jdk160-update-14-release/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 03:10:46 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[Sun]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=230</guid>
		<description><![CDATA[Oracle的商业手段在收购Sun之后很快开始奏效：Sun发布了 Java SE 6 update 14 , 包含了300多处BUG修复，也引入了不少新特性，如：Java HotSpot VM 14.0 ，  JAX WS 2.1.6和JAXB 2.1.10，JavaDB 10.4.2.1，Java VisualVM更新等。

其中最吸引人的就是Garbage First 垃圾收集器（简称G1），这是一款低时延的垃圾收集器，在4月份的报道 Sun&#8217;s Garbage First Collector Largely Eliminates Low Latency/High Throughput Tradeoff 中，就提到将用G1来取代Hotspot JVM 中的CMS。通过设置G1的参数，用户可以显式指定在某个时间段里面垃圾收集的开销时间不能超过多少。

<span class="readmore"><a href="http://www.codigg.com/2009/06/jdk160-update-14-release/" title="JDK1.6.0 update 14发布，部分功能需要付费使用">阅读全文——共584字</a></span><h3>相关文章</h3><ul><li><a href="http://www.codigg.com/2009/06/sun-clarifies-on-g1-licensing-controversy/" title="Sun澄清JAVA G1垃圾收集器商业授权误会 2009.06.15">Sun澄清JAVA G1垃圾收集器商业授权误会</a>(10)</li>
<li><a href="http://www.codigg.com/2009/05/java-pdf-to-image-converter/" title="将PDF转换为图片 2009.05.25">将PDF转换为图片</a>(160)</li>
<li><a href="http://www.codigg.com/2009/05/cloud-computing-app-market/" title="Sun将创建全球最大在线Java应用程序商店 2009.05.24">Sun将创建全球最大在线Java应用程序商店</a>(54)</li>
</ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://vidvain.com/hyip-investment" >hyip investment</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/jdk160-update-14-release/#comment-214246" title="View the entire comment by hyip investment" >Fantastic goods from you, man. JDK1.6.0 update 14å...</a></li>
<li><a class="commentor" href="http://www.obbergton.com/" >obbergton</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/jdk160-update-14-release/#comment-214138" title="View the entire comment by obbergton" >Hey nice article  .But The best tip to write an ab...</a></li>
<li><a class="commentor" href="http://thebossnetwork.net/blogs/entry/Qualification-requirements-for-Debt-Consolidation" >Darrin Rowell</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/jdk160-update-14-release/#comment-214082" title="View the entire comment by Darrin Rowell" >So considerably info on one page, kudo to you it h...</a></li>
<li><a class="commentor" href="http://heanet.dl.sourceforge.net/project/cengiz/look/doc24.html" >bad credit cards uk</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/jdk160-update-14-release/#comment-214078" title="View the entire comment by bad credit cards uk" >Credit maison from its time4 of purposes that are ...</a></li>
<li><a class="commentor" href="http://heanet.dl.sourceforge.net/project/cengiz/look/doc49.html" >instant online payday loan</a> : <a class="comment_content" href="http://www.codigg.com/2009/06/jdk160-update-14-release/#comment-214077" title="View the entire comment by instant online payday loan" >That is, they, and some critics, entertain the $50...</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2009/06/jdk160-update-14-release/feed/</wfw:commentRss>
		<slash:comments>271</slash:comments>
		</item>
		<item>
		<title>java任务调度工具cron4j简介</title>
		<link>http://www.codigg.com/2009/05/java-scheduler-cron4j/</link>
		<comments>http://www.codigg.com/2009/05/java-scheduler-cron4j/#comments</comments>
		<pubDate>Thu, 28 May 2009 13:39:59 +0000</pubDate>
		<dc:creator>Codigg</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[cron4j]]></category>

		<guid isPermaLink="false">http://www.codigg.com/?p=170</guid>
		<description><![CDATA[基于LGPL发布的cron4j实现了用Unix crontab语法来调度任务，使用方法如下：



?View Code JAVA// Creates a Scheduler instance. 创建调度实例

Scheduler s = new Scheduler&#40;&#41;;

&#160;

<span class="readmore"><a href="http://www.codigg.com/2009/05/java-scheduler-cron4j/" title="java任务调度工具cron4j简介">阅读全文——共338字</a></span><h3>相关文章</h3><ul><li>0</li></ul><h3>最近评论</h3><ul><li><a class="commentor" href="http://www.kopekegitimmerkezi.net" >köpek eğitimi</a> : <a class="comment_content" href="http://www.codigg.com/2009/05/java-scheduler-cron4j/#comment-214080" title="View the entire comment by köpek eğitimi" >Nice a single blog operator success webpage articl...</a></li>
<li><a class="commentor" href="http://www.atkibere.com/" >polar bere</a> : <a class="comment_content" href="http://www.codigg.com/2009/05/java-scheduler-cron4j/#comment-213767" title="View the entire comment by polar bere" >Fantastic submit admin! i bookmarked your world-wi...</a></li>
<li><a class="commentor" href="http://www.hobbyilan.com/" >rc uçak</a> : <a class="comment_content" href="http://www.codigg.com/2009/05/java-scheduler-cron4j/#comment-213619" title="View the entire comment by rc uçak" >I was curious about your next put up admin actuall...</a></li>
<li><a class="commentor" href="http://jeanboyle1128.outilblog.com/The-first-blog-b1/Prendi-carta-Medical-MarijuanaGrass-For-Medical-Use-per-ricevere-le-cure-Marijuana-Weed-b1-p6.htm" >semi di cannabis</a> : <a class="comment_content" href="http://www.codigg.com/2009/05/java-scheduler-cron4j/#comment-213485" title="View the entire comment by semi di cannabis" >It is hard to come by informed individuals for thi...</a></li>
<li><a class="commentor" href="http://www.kolonkanseribelirtileri.com/" >kolon kanseri belirtileri</a> : <a class="comment_content" href="http://www.codigg.com/2009/05/java-scheduler-cron4j/#comment-213052" title="View the entire comment by kolon kanseri belirtileri" >I needed for this web site submit admin genuinely ...</a></li>
</ul>]]></description>
		<wfw:commentRss>http://www.codigg.com/2009/05/java-scheduler-cron4j/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

