<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>椰子Java</title> 
<link>http:///index.php</link> 
<description>       我从事软件行业已经9年啦，2001毕业以后一直在成都从事软件开发工作，从事过电信行业相关软件开发和航空行业相关软件开发工作，2007回到了海南，回到了我的故乡。                                                                                                                                我经历了喜欢--狂热--疲倦--坚持--深爱上我的行业，因为它最体现我的价值。我对它了解越深就越能感觉到它的奇妙性，我可以在它虚拟出来的世界里任意翱翔。。。</description> 
<language>zh-cn</language> 
<copyright>Powered by Bo-blog 2.0.2 sp1</copyright>
<item>
<link>http:///read.php?1080</link>
<title>Google出的一个非常完善的身份证（中国）解析模块</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>Free Java原代码</category>
<pubDate>Wed, 10 Mar 2010 04:36:32 +0000</pubDate> 
<guid>http:///read.php?1080</guid> 
<description>
<![CDATA[ 
	这个文件只能在登入之后下载。请先 <a href="login.php?job=register">注册</a> 或 <a href="login.php">登入</a>
  ]]> 
</description>
</item><item>
<link>http:///read.php?1079</link>
<title>我可怜的域名又回到我身边了</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>同福软件营</category>
<pubDate>Mon, 08 Mar 2010 02:02:48 +0000</pubDate> 
<guid>http:///read.php?1079</guid> 
<description>
<![CDATA[ 
	经过4天的惊魂，我的域名终于又回到我身边了，我该拿什么来报答你我心爱的战友！
  ]]> 
</description>
</item><item>
<link>http:///read.php?1078</link>
<title>青蛙趣闻</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>My English</category>
<pubDate>Tue, 02 Mar 2010 07:19:49 +0000</pubDate> 
<guid>http:///read.php?1078</guid> 
<description>
<![CDATA[ 
	<a href="http:///attachment/201003/1267600407_0.jpg" target="_blank"><img src="http:///attachment/201003/1267600407_0.jpg" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/>This is a Cuban tree frog on a tree in my backyard in southern Florida. How and why he ate this light is a mystery. It should be noted that at the time I was taking this photo, I thought this frog was dead, having cooked himself from the inside. I'm happy to say I was wrong. After a few shots he adjusted his position. So after I was finished shooting him, I pulled the light out of his mouth and he was fine. Actually, I might be crazy but I don't think he was very happy when I took his light away.<br/><br/>这是一个在南弗洛里达的爱好者拍的，他在他的后院拍到这只青蛙，他当时把一个小彩灯当作一个神秘物吃掉了，刚开始他以为它会死掉，但是它后来恢复了常态，当他把小彩灯拿出来以后小青蛙还活得好好的，也许青蛙还会责怪他把彩灯拿走。
  ]]> 
</description>
</item><item>
<link>http:///read.php?1077</link>
<title>EXT快捷键使用总结</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>EXT &amp; YUI</category>
<pubDate>Mon, 01 Mar 2010 02:05:16 +0000</pubDate> 
<guid>http:///read.php?1077</guid> 
<description>
<![CDATA[ 
	Ext.onReady(function() {<br/> &nbsp; &nbsp;var form = new Ext.form.FormPanel({<br/> &nbsp; &nbsp; &nbsp; &nbsp;baseCls: 'x-plain',<br/> &nbsp; &nbsp; &nbsp; &nbsp;labelWidth: 55,<br/> &nbsp; &nbsp; &nbsp; &nbsp;defaultType: 'textfield',<br/><br/> &nbsp; &nbsp; &nbsp; &nbsp;items: [{<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;fieldLabel: 'Send To',<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;name: 'to',<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;anchor:'100%' &nbsp;// anchor width by percentage<br/> &nbsp; &nbsp; &nbsp; &nbsp;}<br/> &nbsp; &nbsp; &nbsp; &nbsp;//一下是 Form 快捷方式<br/> &nbsp; &nbsp; &nbsp; &nbsp;keys:[{<br/>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; key:Ext.EventObject.ENTER,<br/>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; fn:doSearch,<br/>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; scope:this<br/>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;}]<br/> &nbsp; &nbsp; &nbsp; &nbsp;<br/> &nbsp; &nbsp;});<br/> &nbsp; &nbsp;<br/> &nbsp; &nbsp;//快捷方式执行的方法<br/> &nbsp; &nbsp;function doSearch(){<br/> &nbsp; &nbsp; &nbsp; alert('开始查找。。。');<br/> &nbsp; &nbsp;};<br/><br/> &nbsp; &nbsp;var window = new Ext.Window({<br/> &nbsp; &nbsp; &nbsp; &nbsp;title: 'Resize Me',<br/> &nbsp; &nbsp; &nbsp; &nbsp;width: 500,<br/> &nbsp; &nbsp; &nbsp; &nbsp;height:300,<br/> &nbsp; &nbsp; &nbsp; &nbsp;minWidth: 300,<br/> &nbsp; &nbsp; &nbsp; &nbsp;minHeight: 200,<br/> &nbsp; &nbsp; &nbsp; &nbsp;layout: 'fit',<br/> &nbsp; &nbsp; &nbsp; &nbsp;plain:true,<br/> &nbsp; &nbsp; &nbsp; &nbsp;bodyStyle:'padding:5px;',<br/> &nbsp; &nbsp; &nbsp; &nbsp;buttonAlign:'center',<br/> &nbsp; &nbsp; &nbsp; &nbsp;items: form<br/> &nbsp; &nbsp;});<br/><br/> &nbsp; &nbsp;window.show();<br/>});<br/><br/>当然快捷键也可以直接放在Windows里面。<br/><br/><br/>1：KeyMap构造方法如下。<br/>KeyMap( Mixed el, Object config, [String eventName] )<br/>参数说明：<br/>el:HTMLElement元素或id号。<br/>config:object，可以包含如下配置信息。<br/>{<br/> &nbsp; &nbsp; key: String/Array, &nbsp; &nbsp; //可以是数字，字符，Ext.EventObject.LEFT助记符以及它们组成的数组<br/> &nbsp; &nbsp; shift: &nbsp; &nbsp; &nbsp; Boolean, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//shift/ctrl/alt键与key同时按下<br/> &nbsp; &nbsp; &nbsp;ctrl: &nbsp; &nbsp; &nbsp; &nbsp;Boolean,<br/> &nbsp; &nbsp; &nbsp;alt : &nbsp; &nbsp; &nbsp; &nbsp;Boolean,<br/> &nbsp; &nbsp; &nbsp;fn &nbsp;: &nbsp; &nbsp; &nbsp; &nbsp;Function, &nbsp; &nbsp; &nbsp; &nbsp; //回调函数<br/> &nbsp; &nbsp; scope: &nbsp; &nbsp; &nbsp; Object &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//按键事件绑定范围<br/>}<br/>eventName:string 可选，其值为keydown等。<br/><br/>2：新建立一个KeyMap：<br/><br/>&nbsp;&nbsp;var el = Ext.get("idv"); &nbsp; <br/>&nbsp;&nbsp;var keympTest=new Ext.KeyMap(el,{ &nbsp; <br/>&nbsp;&nbsp;&nbsp;&nbsp;key:Ext.EventObject.ENTER,//此处写为Ext.EventObject.ENTER亦可 &nbsp; <br/>&nbsp;&nbsp;&nbsp;&nbsp;//ctrl:true,//此行代码若存在，则fn在ctrl和key同时按下的情况下触发，此处是ctrl+enter &nbsp; <br/>&nbsp;&nbsp;&nbsp;&nbsp;//shift: true, &nbsp; &nbsp;//同上<br/>&nbsp;&nbsp;&nbsp;&nbsp;//alt: (true/false),//同上 &nbsp; &nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;fn:handerMethod, &nbsp; <br/>&nbsp;&nbsp;&nbsp;&nbsp;scope:this &nbsp;<br/>&nbsp;&nbsp;} &nbsp; <br/>&nbsp;&nbsp;); &nbsp; <br/>&nbsp;&nbsp;keympTest.enable();//使当前keymap配置生效 &nbsp;<br/><br/><br/><br/>3：向以存在的快捷方式加入新的热键。<br/>&nbsp;&nbsp;keympTest.addBinding({ &nbsp; <br/>&nbsp;&nbsp;&nbsp;&nbsp;key:'&#92;r', &nbsp; <br/>&nbsp;&nbsp;&nbsp;&nbsp;shift:true, &nbsp; <br/>&nbsp;&nbsp;&nbsp;&nbsp;fn:handerMethod, &nbsp; <br/>&nbsp;&nbsp;&nbsp;&nbsp;scope:this &nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;}); &nbsp; <br/>&nbsp;&nbsp;&nbsp;&nbsp;keympTest.enable(); &nbsp; <br/>&nbsp;&nbsp;}); <br/>
  ]]> 
</description>
</item><item>
<link>http:///read.php?1076</link>
<title>我的新浪微博客</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>我思我在</category>
<pubDate>Mon, 22 Feb 2010 16:08:05 +0000</pubDate> 
<guid>http:///read.php?1076</guid> 
<description>
<![CDATA[ 
	http://t.sina.com.cn/1698453491<br/><br/>嘿嘿，既然买了Googel手机，最好拿来干什么呢？拿来写微博吧，嘿嘿。。。。
  ]]> 
</description>
</item><item>
<link>http:///read.php?1075</link>
<title>Apache+ActiveMQ教程</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>Java理论及专业研究</category>
<pubDate>Mon, 15 Feb 2010 14:14:16 +0000</pubDate> 
<guid>http:///read.php?1075</guid> 
<description>
<![CDATA[ 
	这个文件只能在登入之后下载。请先 <a href="login.php?job=register">注册</a> 或 <a href="login.php">登入</a>
  ]]> 
</description>
</item><item>
<link>http:///read.php?1074</link>
<title>JSTL</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>Java在Web应用</category>
<pubDate>Sun, 14 Feb 2010 14:59:00 +0000</pubDate> 
<guid>http:///read.php?1074</guid> 
<description>
<![CDATA[ 
	这个文件只能在登入之后下载。请先 <a href="login.php?job=register">注册</a> 或 <a href="login.php">登入</a><br/><br/>JSP的扩展标签，虽然在以前的项目很少用到，但是今天还是做了一个学习，以备不时之需。
  ]]> 
</description>
</item><item>
<link>http:///read.php?1073</link>
<title>新年快乐！！！</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>路线图计划</category>
<pubDate>Sat, 13 Feb 2010 13:38:27 +0000</pubDate> 
<guid>http:///read.php?1073</guid> 
<description>
<![CDATA[ 
	虎虎虎虎虎虎虎虎虎虎虎虎虎虎虎虎虎虎虎虎虎虎虎虎<br/>虎年快乐！！！！！！
  ]]> 
</description>
</item><item>
<link>http:///read.php?1072</link>
<title>Velocity 实例</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>Free Java原代码</category>
<pubDate>Fri, 12 Feb 2010 14:20:01 +0000</pubDate> 
<guid>http:///read.php?1072</guid> 
<description>
<![CDATA[ 
	 &nbsp; &nbsp; &nbsp; Velocity是一个基于java的模板引擎（template engine）。它允许任何人仅仅简单的使用模板语言（template language）来引用由java代码定义的对象。 当Velocity应用于web开发时，界面设计人员可以和java程序开发人员同步开发一个遵循MVC架构的web站点，也就是说，页面设计人员可以只关注页面的显示效果，而由java程序开发人员关注业务逻辑编码。Velocity将java代码从web页面中分离出来，这样为web站点的长期维护提供了便利，同时也为我们在JSP和PHP之外又提供了一种可选的方案。 Velocity的能力远不止web站点开发这个领域，例如，它可以从模板（template）产生SQL和PostScript、XML，它也可以被当作一个独立工具来产生源代码和报告，或者作为其他系统的集成组件使用。Velocity也可以为Turbine web开发架构提供模板服务（template service）。<br/><br/>这个文件只能在登入之后下载。请先 <a href="login.php?job=register">注册</a> 或 <a href="login.php">登入</a> <br/><br/> &nbsp; &nbsp;
  ]]> 
</description>
</item><item>
<link>http:///read.php?1071</link>
<title>取得CUP信息</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>深度开发--Win32汇编</category>
<pubDate>Thu, 11 Feb 2010 15:25:23 +0000</pubDate> 
<guid>http:///read.php?1071</guid> 
<description>
<![CDATA[ 
	这个文件只能在登入之后下载。请先 <a href="login.php?job=register">注册</a> 或 <a href="login.php">登入</a>
  ]]> 
</description>
</item>
</channel>
</rss>