<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/fengyun14" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/fengyun14" type="application/rss+xml"></fs:self_link><lastBuildDate>Wed, 15 Apr 2009 10:13:00 GMT</lastBuildDate><title>阿龙的专栏</title><description>XinXiang Police</description><link>http://blog.csdn.net/fengyun14/</link><item><title>talend结合XML写的一个自动提取并更改为最新时间的一个类</title><link>http://blog.csdn.net/fengyun14/archive/2009/04/15/4074927.aspx</link><wfw:comment>http://blog.csdn.net/fengyun14/comments/4074927.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/fengyun14/comments/commentRss/4074927.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4074927</trackback:ping><description>&lt;br /&gt;import java.io.FileOutputStream;
import java.io.IOException;
import java.io.FileNotFoundException;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
import jav&lt;img src =&quot;http://blog.csdn.net/fengyun14/aggbug/4074927.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 15 Apr 2009 18:13:00 +0800</pubDate><author>阿龙</author><comments>http://blog.csdn.net/fengyun14/archive/2009/04/15/4074927.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2009/04/15/4074927.aspx</guid><dc:creator>阿龙</dc:creator></item><item><title>常用的数据库统计SQL语句</title><link>http://blog.csdn.net/fengyun14/archive/2009/04/07/4053602.aspx</link><wfw:comment>http://blog.csdn.net/fengyun14/comments/4053602.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/fengyun14/comments/commentRss/4053602.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4053602</trackback:ping><description>&lt;br /&gt;1.解决被零除(零做除数时)&lt;br /&gt;&lt;br /&gt;--来自百度问吧&lt;br /&gt;&lt;br /&gt;在统计系统中,需要求百分数, &lt;br /&gt;如(sum(baseprice)-sum(quote))/sum(baseprice)*100)中, &lt;br /&gt;如果sum(baseprice)为0,系统会报错,不能运行&lt;br /&gt;&lt;br /&gt;把sum(baseprice) 改为 &lt;br /&gt;nullif(sum(isnull(baseprice,0)),0) &lt;br /&gt;就可以了，除于0会出错，除于null就不会出错了&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2.列出某年1-12月数据各产吕的销售数据&lt;br /&gt;&lt;br /&gt;Select 产品ID AS 机型, SUM(CASE month(日期) WHEN 1 THEN 销售量 ELSE 0 END) &lt;br /&gt;      AS [一月], SUM(CASE month(日期) WHEN 2 THEN 销售量 ELSE 0 END) AS [二月], &lt;br /&gt;      SUM(CASE &lt;img src =&quot;http://blog.csdn.net/fengyun14/aggbug/4053602.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 07 Apr 2009 18:49:00 +0800</pubDate><author>阿龙</author><comments>http://blog.csdn.net/fengyun14/archive/2009/04/07/4053602.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2009/04/07/4053602.aspx</guid><dc:creator>阿龙</dc:creator></item><item><title>12条有用的Flex代码</title><link>http://blog.csdn.net/fengyun14/archive/2009/04/07/4053569.aspx</link><wfw:comment>http://blog.csdn.net/fengyun14/comments/4053569.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/fengyun14/comments/commentRss/4053569.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4053569</trackback:ping><description>&lt;br /&gt;1.复制内容到系统剪贴板 &lt;br /&gt;System.setClipboard(strContent); &lt;br /&gt;&lt;br /&gt;2.复制一个ArrayCollection &lt;br /&gt;   //dummy solution( well, it works ) &lt;br /&gt;   var bar:ArrayCollection = new ArrayCollection(); &lt;br /&gt;   for each ( var i:Object in ac ){ &lt;br /&gt;       bar.addItem( i ); &lt;br /&gt;   } &lt;br /&gt;   // fantastic ! // &lt;br /&gt;   var bar:ListCollectionView = new ListCollectionView( ListCollectionView( ac ).list ); &lt;br /&gt;&lt;br /&gt;3.打开一个新浏览器窗口 &lt;br /&gt;navigateToURL(new URLRequest('http://ntt.cc'), '_blank'); &lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/fengyun14/aggbug/4053569.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 07 Apr 2009 18:41:00 +0800</pubDate><author>阿龙</author><comments>http://blog.csdn.net/fengyun14/archive/2009/04/07/4053569.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2009/04/07/4053569.aspx</guid><dc:creator>阿龙</dc:creator></item><item><title>FLEX中的Fluorine网关与WebService的区别</title><link>http://blog.csdn.net/fengyun14/archive/2009/03/13/3987085.aspx</link><wfw:comment>http://blog.csdn.net/fengyun14/comments/3987085.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/fengyun14/comments/commentRss/3987085.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3987085</trackback:ping><description>以前以为webservice只能使用一个方法，后来发现这是错误的，在FLEX中，使用WEBSERVICE其实更方便。&lt;img src =&quot;http://blog.csdn.net/fengyun14/aggbug/3987085.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 13 Mar 2009 20:25:00 +0800</pubDate><author>阿龙</author><comments>http://blog.csdn.net/fengyun14/archive/2009/03/13/3987085.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2009/03/13/3987085.aspx</guid><dc:creator>阿龙</dc:creator></item><item><title>Talend中变量载入(tContextLoad)的用法，及其他注意事项</title><link>http://blog.csdn.net/fengyun14/archive/2009/03/13/3986788.aspx</link><wfw:comment>http://blog.csdn.net/fengyun14/comments/3986788.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/fengyun14/comments/commentRss/3986788.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3986788</trackback:ping><description>此文为本人私下参考用，不拘泥于表达一、要用tContextLoad，就要：1、放一个tOracleInput，其中此表要有2个字段，第一字段是key（即描述），第二个字段是value。2、放一个tContextLoad。注意，之前要在Contexts栏目添加tOracleInput中key里的变量。二、日期的问题由于Talend是由JAVA做的，日期被转为String后，就形如： 200-3-12 11:11:11.0 了。所以下一步如果自定义select的where的话，就要用substring截取，如：where riqi &gt; to_date('&quot; + context.mykey.substring(0,context.mykey.length()-2) + &quot;','yyyy-MM-DD HH24:MI:SS')&quot;三、自定义schema内容软件在用到关键的控件：tMap时，一般会抽取tOracleInput 中schema的全部字段，如 &lt;img src =&quot;http://blog.csdn.net/fengyun14/aggbug/3986788.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 13 Mar 2009 19:05:00 +0800</pubDate><author>阿龙</author><comments>http://blog.csdn.net/fengyun14/archive/2009/03/13/3986788.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2009/03/13/3986788.aspx</guid><dc:creator>阿龙</dc:creator></item><item><title>FLEX中给组件添加自定义事件</title><link>http://blog.csdn.net/fengyun14/archive/2008/12/08/3478340.aspx</link><wfw:comment>http://blog.csdn.net/fengyun14/comments/3478340.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/fengyun14/comments/commentRss/3478340.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3478340</trackback:ping><description>FLEX 系统提供的事件与DOM的事件基本上完全一致 但是和传统的WEB开发不同的是  可以为自定义的组件添加自定义的事件    比如我们做了一个组件是一个登录框   当点击登录按钮的时候触发我们自定义的事件 比如叫&quot;login&quot;事件  虽然这个login事件 归根结底还是某个按钮的click事件 但自定义的事件比传统的事件有什么好处呢 ：一是事件的名字是自定义的 可以形象的表示这个事件本身 而不像以前还要关心是哪个按钮按了一下等等  这样为组件与组件的通讯提供便利   下面的例子中自定义了一个组件叫testComponent , 这个自定义的组件中有一个按钮和一个输入框, 当按下这个按钮的时候   新建一个新的事件叫shareData 并且shareData事件被声明为一个textEvent ，  textEvent可以通过text属性来传递数据（textInput控件的值） 。EventTest.mxml中引用了这个自定义组件testComponent 并捕获testComponent中的自定义事件shareData, 输出testComponent 中textIn&lt;img src =&quot;http://blog.csdn.net/fengyun14/aggbug/3478340.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 09 Dec 2008 03:40:00 +0800</pubDate><author>阿龙</author><comments>http://blog.csdn.net/fengyun14/archive/2008/12/08/3478340.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2008/12/08/3478340.aspx</guid><dc:creator>阿龙</dc:creator></item><item><title>Flex Application 初始化顺序</title><link>http://blog.csdn.net/fengyun14/archive/2008/11/02/3206270.aspx</link><wfw:comment>http://blog.csdn.net/fengyun14/comments/3206270.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/fengyun14/comments/commentRss/3206270.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3206270</trackback:ping><description>preloader-&gt;systemManager-&gt;FlexApplication started...&lt;br /&gt;然后才是&lt;br /&gt;&lt;br /&gt;preinitialize&lt;br /&gt;在所有的初始化之前触发,没有子组件的定义,但是可以引用组件的变量.&lt;br /&gt;&lt;br /&gt;initialize&lt;br /&gt;当所有子组件生成完成后触发,在这个时间点还没有组件被渲染出来.&lt;br /&gt;&lt;br /&gt;creationComplete&lt;br /&gt;组件定义完成并已经在显示列表.&lt;br /&gt;&lt;br /&gt;applicationComplete&lt;br /&gt;所有的组件初始化完成并显示.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;首 先介绍一下SystemManager. SystemManager是Flex应用的主控者, 它控制着应用窗口, Application实例, 弹出窗口, cursors, 并管理着ApplicationDomain中的类. SystemManager是FlashPlayer实例化的第一个类, 它存储了主应用窗口的大小和位置信息, 保存其子组件比如:浮动弹出窗口和模态窗口的痕迹. 通过Sy&lt;img src =&quot;http://blog.csdn.net/fengyun14/aggbug/3206270.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 02 Nov 2008 18:07:00 +0800</pubDate><author>阿龙</author><comments>http://blog.csdn.net/fengyun14/archive/2008/11/02/3206270.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2008/11/02/3206270.aspx</guid><dc:creator>阿龙</dc:creator></item><item><title>flex 各组件对应的样式属性</title><link>http://blog.csdn.net/fengyun14/archive/2008/10/30/3181251.aspx</link><wfw:comment>http://blog.csdn.net/fengyun14/comments/3181251.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/fengyun14/comments/commentRss/3181251.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3181251</trackback:ping><description>flex 各组件对应的样式属性&lt;img src =&quot;http://blog.csdn.net/fengyun14/aggbug/3181251.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 30 Oct 2008 16:18:00 +0800</pubDate><author>阿龙</author><comments>http://blog.csdn.net/fengyun14/archive/2008/10/30/3181251.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2008/10/30/3181251.aspx</guid><dc:creator>阿龙</dc:creator></item><item><title>将普通表转变为分区表、索引分区，及与无分区前的查询效率比较</title><link>http://blog.csdn.net/fengyun14/archive/2008/02/12/2088905.aspx</link><wfw:comment>http://blog.csdn.net/fengyun14/comments/2088905.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/fengyun14/comments/commentRss/2088905.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2088905</trackback:ping><description>ORACLE表分区、局部前缀索引分区、局部非前缀索引分区、全局索引&lt;img src =&quot;http://blog.csdn.net/fengyun14/aggbug/2088905.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 13 Feb 2008 01:06:00 +0800</pubDate><author>阿龙</author><comments>http://blog.csdn.net/fengyun14/archive/2008/02/12/2088905.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2008/02/12/2088905.aspx</guid><dc:creator>阿龙</dc:creator></item><item><title>用.NET调用oracle存储过程返回记录集</title><link>http://blog.csdn.net/fengyun14/archive/2008/02/10/2087559.aspx</link><wfw:comment>http://blog.csdn.net/fengyun14/comments/2087559.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/fengyun14/comments/commentRss/2087559.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2087559</trackback:ping><description>用.NET调用oracle存储过程返回记录集&lt;img src =&quot;http://blog.csdn.net/fengyun14/aggbug/2087559.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 10 Feb 2008 18:25:00 +0800</pubDate><author>阿龙</author><comments>http://blog.csdn.net/fengyun14/archive/2008/02/10/2087559.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2008/02/10/2087559.aspx</guid><dc:creator>阿龙</dc:creator></item></channel></rss>