﻿<?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-Understanding Java-最新评论</title><link>http://www.blogjava.net/botson/CommentsRSS.aspx</link><description /><language>zh-cn</language><pubDate>Fri, 15 Aug 2008 01:34:06 GMT</pubDate><lastBuildDate>Fri, 15 Aug 2008 01:34:06 GMT</lastBuildDate><generator>cnblogs</generator><item><title>re: DWR的DWRUtil.addRows方法的使用</title><link>http://www.blogjava.net/botson/archive/2009/05/11/194952.html#269985</link><dc:creator>阿苏</dc:creator><author>阿苏</author><pubDate>Mon, 11 May 2009 01:11:00 GMT</pubDate><guid>http://www.blogjava.net/botson/archive/2009/05/11/194952.html#269985</guid><description><![CDATA[如果有多个“tbodyId”如何用循环来实现呀~~~比如：<br>for(i=0;i&lt;5;i++)<br>{<br>   DWRUtil.removeAllRows(&quot;tbodyId&quot;); // &quot;tbodyId&quot;是需要嵌入行的元素ID <br>   DWRUtil.addRows(&quot;tbodyId&quot;+i, data, cellFunctions); <br>}<br><br>这样写可好像在调用cellFunctions的时候有问题，请问应该怎样用循环来实现我想要的功能？？？<img src ="http://www.blogjava.net/botson/aggbug/269985.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/botson/" target="_blank">阿苏</a> 2009-05-11 09:11 <a href="http://www.blogjava.net/botson/archive/2009/05/11/194952.html#269985#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: DWR的DWRUtil.addRows方法的使用</title><link>http://www.blogjava.net/botson/archive/2009/04/17/194952.html#266189</link><dc:creator>嘟嘟嘟</dc:creator><author>嘟嘟嘟</author><pubDate>Fri, 17 Apr 2009 09:02:00 GMT</pubDate><guid>http://www.blogjava.net/botson/archive/2009/04/17/194952.html#266189</guid><description><![CDATA[放屁<img src ="http://www.blogjava.net/botson/aggbug/266189.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/botson/" target="_blank">嘟嘟嘟</a> 2009-04-17 17:02 <a href="http://www.blogjava.net/botson/archive/2009/04/17/194952.html#266189#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 【原创】编写Oracle存储过程，按照条件把数据导出至XML文件</title><link>http://www.blogjava.net/botson/archive/2009/03/22/187362.html#261379</link><dc:creator>ljjhxyljj</dc:creator><author>ljjhxyljj</author><pubDate>Sun, 22 Mar 2009 14:42:00 GMT</pubDate><guid>http://www.blogjava.net/botson/archive/2009/03/22/187362.html#261379</guid><description><![CDATA[这个例子是不是不能在oracle8i中通过？<img src ="http://www.blogjava.net/botson/aggbug/261379.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/botson/" target="_blank">ljjhxyljj</a> 2009-03-22 22:42 <a href="http://www.blogjava.net/botson/archive/2009/03/22/187362.html#261379#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 【转】DWR中使用HttpSession等API</title><link>http://www.blogjava.net/botson/archive/2008/12/08/222151.html#245027</link><dc:creator>mesmes</dc:creator><author>mesmes</author><pubDate>Mon, 08 Dec 2008 06:31:00 GMT</pubDate><guid>http://www.blogjava.net/botson/archive/2008/12/08/222151.html#245027</guid><description><![CDATA[WebContext ctx = WebContextFactory.get();<br>		HttpServletRequest request = ctx.getHttpServletRequest();<img src ="http://www.blogjava.net/botson/aggbug/245027.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/botson/" target="_blank">mesmes</a> 2008-12-08 14:31 <a href="http://www.blogjava.net/botson/archive/2008/12/08/222151.html#245027#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 【原创】编写Oracle存储过程，按照条件把数据导出至XML文件[未登录]</title><link>http://www.blogjava.net/botson/archive/2008/12/07/187362.html#244893</link><dc:creator>过客</dc:creator><author>过客</author><pubDate>Sun, 07 Dec 2008 12:40:00 GMT</pubDate><guid>http://www.blogjava.net/botson/archive/2008/12/07/187362.html#244893</guid><description><![CDATA[我写的代码如下： (pid number,file_path varchar2)<br>is<br> doc xmlDom.DOMDocument := xmldom.newDOMDocument;        -- 创建文档对象<br> main_node xmlDom.DOMNode := xmldom.makeNode(doc);       -- 获得文档节点<br> root_elmt xmlDom.DOMElement:= xmldom.createElement(doc, 'PEOPLE');   -- 创建根元素<br>  person_elmt xmlDom.DOMElement;      --定义PERSON元素<br>  name_elmt xmlDom.DOMElement;      --定义NAME元素<br>  qyjs_elmt xmlDom.DOMElement;      --定义QYJS元素<br>  filename_elmt xmlDom.DOMElement;           --定义filename元素       <br>  root_node xmlDom.DOMNode;   --定义PEOPLE节点<br>  person_node xmlDom.DOMNode;   --定义PERSON节点<br>  name_node xmlDom.DOMNode;   --定义NAME节点<br>  qyjs_node xmlDom.DOMNode;   --定义qyjs节点<br>  filename_node xmlDom.DOMNode;   --定义filename节点<br>  temp_node xmlDom.DOMNode;<br><br> v_name varchar2(64);<br> v_qyjs varchar2(500);<br> v_filename varchar2(200);<br>begin<br>  SELECT NAME INTO v_name FROM FILIALE WHERE ID=pid;<br>  SELECT QYJS INTO v_qyjs FROM FILIALE WHERE ID=pid;<br>  SELECT OFILENAME INTO v_filename FROM FILIALE WHERE ID=pid;<br>  --生成xml文档<br>  -- 向文档节点加入根节点:&lt;PEOPLE&gt;&lt;/PEOPLE&gt;<br>   root_node := xmldom.appendChild(main_node, xmldom.makeNode(root_elmt));<br><br>   person_elmt := xmldom.createElement(doc, 'PERSON'); --创建PERSON元素<br> -- 向PEOPLE节点加入PERSON节点&lt;PERSON&gt;&lt;/PERSON&gt;<br>   person_node := xmldom.appendChild(root_node, xmldom.makeNode(person_elmt));<br>   <br> --向PERSON节点加入属性PERSONID<br>   xmlDom.SETATTRIBUTE( person_elmt, 'PERSONID', pid );<br><br>   name_elmt := xmldom.createElement(doc, 'NAME');      --创建NAME元素<br>--向PERSON节点加入子节点NAME<br>   name_node := xmldom.appendChild(person_node,xmlDom.makeNode(name_elmt));<br><br>--向NAME节点加入文本<br>   temp_node := xmldom.appendChild(name_node , xmlDom.makeNode(xmldom.createTextNode(doc,v_name)));<br><br>   qyjs_elmt := xmldom.createElement(doc, 'QYJS');      --创建qyjs元素<br>--向PERSON节点加入子节点qyjs<br>   qyjs_node := xmldom.appendChild(person_node,xmlDom.makeNode(qyjs_elmt));<br>--向qyjs节点加入文本<br> temp_node := xmldom.appendChild(qyjs_node,xmlDom.makeNode(xmldom.createTextNode(doc,v_qyjs)));<br><br> filename_elmt := xmldom.createElement(doc, 'FILENAME');      --创建filename元素    <br> --向filename节点加入子节点filename<br> filename_node := xmldom.appendChild(person_node,xmlDom.makeNode(filename_elmt));<br> --向filename节点加入文本<br>   temp_node := xmldom.appendChild(filename_node, xmlDom.makeNode(xmldom.createTextNode(doc,v_filename)));<br><br> --写入硬盘<br> xmldom.setVersion(doc, '1.0 ');<br> xmlDom.writeToFile(doc,file_path,'GBK');<br> EXCEPTION<br> WHEN OTHERS THEN<br>   ROLLBACK; <br>end CJXML;<br>为何报invalid char in text  <img src ="http://www.blogjava.net/botson/aggbug/244893.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/botson/" target="_blank">过客</a> 2008-12-07 20:40 <a href="http://www.blogjava.net/botson/archive/2008/12/07/187362.html#244893#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 【原创】编写Oracle存储过程，按照条件把数据导出至XML文件[未登录]</title><link>http://www.blogjava.net/botson/archive/2008/12/07/187362.html#244892</link><dc:creator>过客</dc:creator><author>过客</author><pubDate>Sun, 07 Dec 2008 12:38:00 GMT</pubDate><guid>http://www.blogjava.net/botson/archive/2008/12/07/187362.html#244892</guid><description><![CDATA[为何我报的错误为invalid char in text<img src ="http://www.blogjava.net/botson/aggbug/244892.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/botson/" target="_blank">过客</a> 2008-12-07 20:38 <a href="http://www.blogjava.net/botson/archive/2008/12/07/187362.html#244892#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: myeclipse6.0 ssh工程步骤</title><link>http://www.blogjava.net/botson/archive/2008/10/29/187268.html#237258</link><dc:creator>川</dc:creator><author>川</author><pubDate>Tue, 28 Oct 2008 17:19:00 GMT</pubDate><guid>http://www.blogjava.net/botson/archive/2008/10/29/187268.html#237258</guid><description><![CDATA[大哥我怎么还是不行呀！照样做了的呢！他就是启动服务器就是报错！<br>严重: action: null<br>org.springframework.beans.factory.BeanCreationException: <br><br>Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userservice' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.hibernate.service.IUserService]: Specified class is an interface<img src ="http://www.blogjava.net/botson/aggbug/237258.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/botson/" target="_blank">川</a> 2008-10-29 01:19 <a href="http://www.blogjava.net/botson/archive/2008/10/29/187268.html#237258#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 【原创】编写Oracle存储过程解析XML，并把数据持久化</title><link>http://www.blogjava.net/botson/archive/2008/10/28/187360.html#237185</link><dc:creator>maggie</dc:creator><author>maggie</author><pubDate>Tue, 28 Oct 2008 10:23:00 GMT</pubDate><guid>http://www.blogjava.net/botson/archive/2008/10/28/187360.html#237185</guid><description><![CDATA[请问直接解析的话说怎么做呢？要在oracle 10g里解析这个XML文件，然后要用IF-THEN-ELSE这样的语句！<img src ="http://www.blogjava.net/botson/aggbug/237185.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/botson/" target="_blank">maggie</a> 2008-10-28 18:23 <a href="http://www.blogjava.net/botson/archive/2008/10/28/187360.html#237185#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: DWR的DWRUtil.addRows方法的使用</title><link>http://www.blogjava.net/botson/archive/2008/10/26/194952.html#236706</link><dc:creator>huml</dc:creator><author>huml</author><pubDate>Sun, 26 Oct 2008 07:06:00 GMT</pubDate><guid>http://www.blogjava.net/botson/archive/2008/10/26/194952.html#236706</guid><description><![CDATA[function callBack(data){<br>            DWRUtil.removeAllRows(&quot;tbodyId&quot;); // &quot;tbodyId&quot;是需要嵌入行的元素ID<br>            DWRUtil.addRows(&quot;tbodyId&quot;, data, cellFunctions);<br>        }<br>        var cellFunctions = [ <br>            function(item) { return item.fundNo; }, <br>            function(item) { return item.fundName; }, <br>            function(item) { return item.price; }, <br>            function(item) { return item.description; }, <br>            function(item) { return item.status==&quot;1&quot;?&quot;正常&quot;:&quot;冻结&quot;; }, <br>            function(item) { <br>               var img = document.createElement(&quot;&lt;img onclick='location.href='edit.do?id=&quot;+item.fundNo+&quot;' style='cursor:hand;'&gt;&quot;);				<br>	  img.setAttribute(&quot;src&quot;, &quot;图片地址&quot;);<br>	  return img;<br>             }<br>        ];@铁衣<br><img src ="http://www.blogjava.net/botson/aggbug/236706.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/botson/" target="_blank">huml</a> 2008-10-26 15:06 <a href="http://www.blogjava.net/botson/archive/2008/10/26/194952.html#236706#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 【转】EC Side分页组件</title><link>http://www.blogjava.net/botson/archive/2008/09/27/187351.html#231546</link><dc:creator>急问</dc:creator><author>急问</author><pubDate>Sat, 27 Sep 2008 09:17:00 GMT</pubDate><guid>http://www.blogjava.net/botson/archive/2008/09/27/187351.html#231546</guid><description><![CDATA[ecside在frameset中不能显示，而在单独的网页中显示是正常的，这是为什么呀？怎么解决这个问题？<img src ="http://www.blogjava.net/botson/aggbug/231546.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/botson/" target="_blank">急问</a> 2008-09-27 17:17 <a href="http://www.blogjava.net/botson/archive/2008/09/27/187351.html#231546#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>