<?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?1107</link>
<title>关于log4j 1.2.15的搞笑问题</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>Java在Web应用</category>
<pubDate>Sun, 18 Jul 2010 15:42:39 +0000</pubDate> 
<guid>http:///read.php?1107</guid> 
<description>
<![CDATA[ 
	Log4j 1.2.15存在一个bug会导致log4j:ERROR LogMananger.repositorySelector was null likely due to。在apache官网上下一个Log4j 1.2.16 把包一覆盖就好了！
  ]]> 
</description>
</item><item>
<link>http:///read.php?1086</link>
<title>DWR实现上传</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>Java在Web应用</category>
<pubDate>Wed, 24 Mar 2010 01:03:09 +0000</pubDate> 
<guid>http:///read.php?1086</guid> 
<description>
<![CDATA[ 
	[sfile]attachment/201003/1269479058_0.rar[s/file]<br/><br/>这是对昨天的上传组件的补充。
  ]]> 
</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?1069</link>
<title>在Ext Grid加上按钮</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>Java在Web应用</category>
<pubDate>Tue, 19 Jan 2010 08:28:11 +0000</pubDate> 
<guid>http:///read.php?1069</guid> 
<description>
<![CDATA[ 
	 &nbsp; &nbsp;var FileList_cm = new Ext.grid.ColumnModel([{header: &#039;附件名称&#039;,dataIndex: &#039;id&#039;}, {header: &#039;附件类型&#039;,dataIndex: &#039;sex&#039;}, {header: &#039;附件大小&#039;,dataIndex: &#039;name&#039;}, <br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {header: &#039;上传人&#039;,dataIndex: &#039;descn&#039;},{header: &#039;上传时间&#039;,dataIndex: &#039;a1&#039;},{header: &#039;下载&#039;,dataIndex: &#039;a2&#039;,renderer:renderDescn}]);<br/> &nbsp; &nbsp;//排序选项<br/> &nbsp; &nbsp;FileList_cm.defaultSortable = true;<br/> &nbsp; &nbsp;//<br/> &nbsp; &nbsp;var FileList_data = [[&#039;送修报告&#039;, &#039;原始文件&#039;, &#039;1M&#039;, &#039;符彬&#039;, &#039;2009-10-10&#039;, &#039;&#039;], [&#039;本次送修依据&#039;, &#039;原始文件&#039;, &#039;1M&#039;, &#039;符彬&#039;, &#039;2009-10-10&#039;, &#039;&#039;], [&#039;厂家送修反馈&#039;, &#039;完工反馈&#039;, &#039;2M&#039;,&#039;符彬&#039;, &#039;2009-10-10&#039;, &#039;&#039;]];<br/> &nbsp; &nbsp;var FileList_ds = new Ext.data.Store({<br/> &nbsp; &nbsp; &nbsp;proxy: new Ext.data.MemoryProxy(FileList_data),<br/> &nbsp; &nbsp; &nbsp;reader: new Ext.data.ArrayReader({}, [{name: &#039;id&#039;,mapping: 0}, {name: &#039;sex&#039;,mapping: 1}, <br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{name: &#039;name&#039;,mapping: 2}, {name: &#039;descn&#039;,mapping: 3}, {name: &#039;a1&#039;,mapping: 4}, {name: &#039;a2&#039;,mapping: 5}])<br/> &nbsp; &nbsp;});<br/> &nbsp; &nbsp;FileList_ds.load();<br/> &nbsp; &nbsp;var FileList = new Ext.grid.GridPanel({<br/> &nbsp; &nbsp; &nbsp;ds: FileList_ds,<br/> &nbsp; &nbsp; &nbsp;cm: FileList_cm,<br/> &nbsp; &nbsp; &nbsp;autoHeight: true,<br/> &nbsp; &nbsp; &nbsp; &nbsp;//列自动适应<br/> &nbsp; &nbsp; &nbsp;viewConfig:{<br/> &nbsp; &nbsp; &nbsp; &nbsp;forceFit: true<br/> &nbsp; &nbsp; &nbsp;}<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//翻页菜单<br/> &nbsp; &nbsp; &nbsp; &nbsp;/*<br/> &nbsp; &nbsp; &nbsp;,bbar: new Ext.PagingToolbar({<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;pageSize: 10,<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;store: FileList_ds,<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;displayInfo: true,<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;displayMsg: &#039;显示第 {0} 条到 {1} 条记录，一共 {2} 条&#039;,<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;emptyMsg: &quot;没有记录&quot;<br/> &nbsp; &nbsp; &nbsp; &nbsp;})*/<br/> &nbsp; &nbsp;}); &nbsp; &nbsp;<br/> &nbsp; &nbsp;<br/> &nbsp; &nbsp;function renderDescn(value, cellmeta, record, rowIndex, columnIndex, store) {<br/> &nbsp; &nbsp; &nbsp; &nbsp;var str = &quot;&lt;input type=&#039;button&#039; value=&#039;点击下载&#039; onclick=&#039;alert(&#92;&quot;&quot; +<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;这个单元格的值是：&quot; + value + &quot;&#92;&#92;n&quot; +<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;这个单元格的配置是：{cellId:&quot; + cellmeta.cellId + &quot;,id:&quot; + cellmeta.id + &quot;,css:&quot; + cellmeta.css + &quot;}&#92;&#92;n&quot; +<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;这个单元格对应行的record是：&quot; + record.data[&quot;id&quot;] + &quot;，一行的数据都在里边&#92;&#92;n&quot; +<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;这是第&quot; + rowIndex + &quot;行&#92;&#92;n&quot; +<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;这是第&quot; + columnIndex + &quot;列&#92;&#92;n&quot; +<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;这个表格对应的Ext.data.Store在这里：&quot; + store + &quot;，随便用吧。&quot; +<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;&#92;&quot;)&#039;&gt;&quot;;<br/> &nbsp; &nbsp; &nbsp; &nbsp;return str;<br/> &nbsp; &nbsp;}<br/>Tags - <a href="http:///tag.php?tag=ext" rel="tag">ext</a>
  ]]> 
</description>
</item><item>
<link>http:///read.php?1067</link>
<title>JSP显示XML数据结构</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>Java在Web应用</category>
<pubDate>Wed, 13 Jan 2010 01:24:20 +0000</pubDate> 
<guid>http:///read.php?1067</guid> 
<description>
<![CDATA[ 
	这个文件只能在登入之后下载。请先 <a href="login.php?job=register">注册</a> 或 <a href="login.php">登入</a><br/><br/> &nbsp; &nbsp; 用JSP显示XML数据。
  ]]> 
</description>
</item><item>
<link>http:///read.php?1022</link>
<title>apache.commons.fileupload in JSP</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>Java在Web应用</category>
<pubDate>Thu, 09 Jul 2009 16:41:46 +0000</pubDate> 
<guid>http:///read.php?1022</guid> 
<description>
<![CDATA[ 
	这个文件只能在登入之后下载。请先 <a href="login.php?job=register">注册</a> 或 <a href="login.php">登入</a><br/><br/>上传文件方法
  ]]> 
</description>
</item><item>
<link>http:///read.php?1023</link>
<title>JS做个表格显示方法</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>Java在Web应用</category>
<pubDate>Mon, 06 Jul 2009 16:43:30 +0000</pubDate> 
<guid>http:///read.php?1023</guid> 
<description>
<![CDATA[ 
	这个文件只能在登入之后下载。请先 <a href="login.php?job=register">注册</a> 或 <a href="login.php">登入</a>
  ]]> 
</description>
</item><item>
<link>http:///read.php?1000</link>
<title>JS判断输入内容的方法</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>Java在Web应用</category>
<pubDate>Thu, 16 Apr 2009 12:39:07 +0000</pubDate> 
<guid>http:///read.php?1000</guid> 
<description>
<![CDATA[ 
	这个文件只能在登入之后下载。请先 <a href="login.php?job=register">注册</a> 或 <a href="login.php">登入</a><br/><br/><a href="http:///attachment/200904/1239885540_0.jpg" target="_blank"><img src="http:///attachment/200904/1239885540_0.jpg" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a>
  ]]> 
</description>
</item><item>
<link>http:///read.php?997</link>
<title>Jsp日历基础方法</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>Java在Web应用</category>
<pubDate>Wed, 08 Apr 2009 02:46:04 +0000</pubDate> 
<guid>http:///read.php?997</guid> 
<description>
<![CDATA[ 
	这个文件只能在登入之后下载。请先 <a href="login.php?job=register">注册</a> 或 <a href="login.php">登入</a>
  ]]> 
</description>
</item><item>
<link>http:///read.php?996</link>
<title>jsp实现个人工日作计划</title> 
<author>fubin &lt;yonghe169@163.com&gt;</author>
<category>Java在Web应用</category>
<pubDate>Tue, 07 Apr 2009 02:36:26 +0000</pubDate> 
<guid>http:///read.php?996</guid> 
<description>
<![CDATA[ 
	这个文件只能在登入之后下载。请先 <a href="login.php?job=register">注册</a> 或 <a href="login.php">登入</a>
  ]]> 
</description>
</item>
</channel>
</rss>