<?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/adminadmin" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/adminadmin" type="application/rss+xml"></fs:self_link><lastBuildDate>Tue, 07 Apr 2009 11:16:00 GMT</lastBuildDate><title>jason的专栏</title><description>IT技术交流</description><link>http://blog.csdn.net/adminadmin/</link><item><title>基于svg的实时监控曲线的实现</title><link>http://blog.csdn.net/adminadmin/archive/2009/04/07/4053684.aspx</link><wfw:comment>http://blog.csdn.net/adminadmin/comments/4053684.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/adminadmin/comments/commentRss/4053684.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4053684</trackback:ping><description>&lt;br /&gt;     最近研究了一下用svg来代替applet完成实时曲线的监控,与ajax结合可以提高效率和突破防火墙的控制,并且可以减少网络传输量.&lt;br /&gt;    为了完成演示的效果,把源代码总的ajax部分省略调,解压就可以在IE中看演示效果,当然需要安装SVG viewer.&lt;br /&gt;&lt;br /&gt;用户可以更改lib.js的如下参数改变图形位置,曲线条数,坐标,线段条数以及颜色等等&lt;br /&gt; //X width 网格区域宽度&lt;br /&gt;var rdwid=800;&lt;br /&gt;// Y width 网格区域高度&lt;br /&gt;var rdhei=400;&lt;br /&gt;// 原点横坐标&lt;br /&gt;var centerX=40;&lt;br /&gt;//原点纵坐标&lt;br /&gt;var centerY=rdhei+30;&lt;br /&gt;var maxLineNum=60;//60条小线段，拥有61个点&lt;br /&gt;var trendStrokeArray=new Array(&quot;#ff0000&quot;, &quot;#00ff00&quot;, &quot;#0000ff&quot;, &quot;#ffd700&quot;, &quot;#ff00ff&quot;, &quot;#00ffff&quot;&lt;img src =&quot;http://blog.csdn.net/adminadmin/aggbug/4053684.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 07 Apr 2009 19:16:00 +0800</pubDate><author>adminadmin</author><comments>http://blog.csdn.net/adminadmin/archive/2009/04/07/4053684.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/adminadmin/archive/2009/04/07/4053684.aspx</guid><dc:creator>adminadmin</dc:creator></item><item><title>如何使用robots.txt防止搜索引擎抓取页面</title><link>http://blog.csdn.net/adminadmin/archive/2008/12/19/3556910.aspx</link><wfw:comment>http://blog.csdn.net/adminadmin/comments/3556910.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/adminadmin/comments/commentRss/3556910.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3556910</trackback:ping><description>Robots.txt 文件对抓取网络的搜索引擎漫游器（称为漫游器）进行限制。这些漫游器是自动的，在它们访问网页前会查看是否存在限制其访问特定网页的 robots.txt 文件。如果你想保护网站上的某些内容不被搜索引擎收入的话，robots.txt 是一个简单有效的工具。这里简单介绍一下怎么使用它。 
&lt;br /&gt;&lt;br /&gt;如何放置 Robots.txt 文件&lt;br /&gt;　　robots.txt自身是一个文本文件。它必须位于域名的根目录中并 被命名为&quot;robots.txt&quot;。位于子目录中的 robots.txt 文件无效，因为漫游器只在域名的根目录中查找此文件。例如，http://www.example.com/robots.txt 是有效位置，http://www.example.com/mysite/robots.txt 则不是。&lt;br /&gt;　　这里举一个robots.txt的例子：&lt;br /&gt;　　User-agent： *&lt;br /&gt;　　Disallow： /cgi-bin/&lt;br /&gt;　　Disallow： /tmp/&lt;br /&gt;　　Disallow： /~name/&lt;img src =&quot;http://blog.csdn.net/adminadmin/aggbug/3556910.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 19 Dec 2008 19:34:00 +0800</pubDate><author>adminadmin</author><comments>http://blog.csdn.net/adminadmin/archive/2008/12/19/3556910.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/adminadmin/archive/2008/12/19/3556910.aspx</guid><dc:creator>adminadmin</dc:creator></item><item><title>用java实现webservice客户端调用</title><link>http://blog.csdn.net/adminadmin/archive/2008/12/10/3489696.aspx</link><wfw:comment>http://blog.csdn.net/adminadmin/comments/3489696.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/adminadmin/comments/commentRss/3489696.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3489696</trackback:ping><description>目前基于java实现webservice客户端调，用的比较多的提供高级接口的封装soap的开源软件有axis，xifre，jaxws，cxf，既提供webservice的发布，又提供webservice的调用的stub生成。使用高层接口，不需要知道SOAP和XML的任何信息，就可以生成和使用一个WebService。对于已经给定的webservice服务端，来完成调用。&lt;img src =&quot;http://blog.csdn.net/adminadmin/aggbug/3489696.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 10 Dec 2008 20:30:00 +0800</pubDate><author>adminadmin</author><comments>http://blog.csdn.net/adminadmin/archive/2008/12/10/3489696.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/adminadmin/archive/2008/12/10/3489696.aspx</guid><dc:creator>adminadmin</dc:creator></item><item><title>Java ClassLoader</title><link>http://blog.csdn.net/adminadmin/archive/2007/10/23/1839436.aspx</link><wfw:comment>http://blog.csdn.net/adminadmin/comments/1839436.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/adminadmin/comments/commentRss/1839436.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1839436</trackback:ping><description>What is ClassLoader?

与普通程序不同的是，Java程序（class文件）并不是本地的可执行程序。当运行Java程序时，首先运行JVM（Java虚拟机），然后再把Java class加载到JVM里头运行，负责加载Java class的这部分就叫做Class Loader。
&lt;img src =&quot;http://blog.csdn.net/adminadmin/aggbug/1839436.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 23 Oct 2007 21:59:00 +0800</pubDate><author>adminadmin</author><comments>http://blog.csdn.net/adminadmin/archive/2007/10/23/1839436.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/adminadmin/archive/2007/10/23/1839436.aspx</guid><dc:creator>adminadmin</dc:creator></item><item><title>注意NoClassDefFoundError异常的产生</title><link>http://blog.csdn.net/adminadmin/archive/2007/08/30/1765041.aspx</link><wfw:comment>http://blog.csdn.net/adminadmin/comments/1765041.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/adminadmin/comments/commentRss/1765041.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1765041</trackback:ping><description>NoClassDefFoundError&lt;img src =&quot;http://blog.csdn.net/adminadmin/aggbug/1765041.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 30 Aug 2007 18:50:00 +0800</pubDate><author>adminadmin</author><comments>http://blog.csdn.net/adminadmin/archive/2007/08/30/1765041.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/adminadmin/archive/2007/08/30/1765041.aspx</guid><dc:creator>adminadmin</dc:creator></item><item><title>Tomcat中Session持久化的配置方法</title><link>http://blog.csdn.net/adminadmin/archive/2007/08/03/1724774.aspx</link><wfw:comment>http://blog.csdn.net/adminadmin/comments/1724774.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/adminadmin/comments/commentRss/1724774.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1724774</trackback:ping><description>Session持久化(2007-04-08)
Session持久化可以实现当tomcat重新启动后,当前IE使用的session仍然有效而不用重新登录,有两步需要做,session持久化很有用,尤其在eclipse中重新增加类后,tomcat重新加载后,IE页面不用再登录,之前的session依旧保持,调试的时候很有用&lt;img src =&quot;http://blog.csdn.net/adminadmin/aggbug/1724774.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 04 Aug 2007 01:11:00 +0800</pubDate><author>adminadmin</author><comments>http://blog.csdn.net/adminadmin/archive/2007/08/03/1724774.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/adminadmin/archive/2007/08/03/1724774.aspx</guid><dc:creator>adminadmin</dc:creator></item><item><title>Session详解</title><link>http://blog.csdn.net/adminadmin/archive/2007/08/01/1720756.aspx</link><wfw:comment>http://blog.csdn.net/adminadmin/comments/1720756.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/adminadmin/comments/commentRss/1720756.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1720756</trackback:ping><description>虽然session机制在web应用程序中被采用已经很长时间了，但是仍然有很多人不清楚session机制的本质，以至不能正确的应用这一技术。本文将详细讨论session的工作机制并且对在Java web application中应用session机制时常见的问题作出解答。&lt;img src =&quot;http://blog.csdn.net/adminadmin/aggbug/1720756.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 01 Aug 2007 19:15:00 +0800</pubDate><author>adminadmin</author><comments>http://blog.csdn.net/adminadmin/archive/2007/08/01/1720756.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/adminadmin/archive/2007/08/01/1720756.aspx</guid><dc:creator>adminadmin</dc:creator></item><item><title>javascript 常用代码</title><link>http://blog.csdn.net/adminadmin/archive/2007/04/19/1570382.aspx</link><wfw:comment>http://blog.csdn.net/adminadmin/comments/1570382.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/adminadmin/comments/commentRss/1570382.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1570382</trackback:ping><description>事件源对象 
event.srcElement.tagName 
event.srcElement.type 
捕获释放 
event.srcElement.setCapture();  
event.srcElement.releaseCapture();  
事件按键 &lt;img src =&quot;http://blog.csdn.net/adminadmin/aggbug/1570382.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 19 Apr 2007 21:31:00 +0800</pubDate><author>adminadmin</author><comments>http://blog.csdn.net/adminadmin/archive/2007/04/19/1570382.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/adminadmin/archive/2007/04/19/1570382.aspx</guid><dc:creator>adminadmin</dc:creator></item><item><title>观察者模式介绍</title><link>http://blog.csdn.net/adminadmin/archive/2007/04/17/1568149.aspx</link><wfw:comment>http://blog.csdn.net/adminadmin/comments/1568149.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/adminadmin/comments/commentRss/1568149.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1568149</trackback:ping><description>简单地说，观察者模式定义了一个一对多的依赖关系，让一个或多个观察者对象监察一个主题对象。这样一个主题对象在状态上的变化能够通知所有的依赖于此对象的那些观察者对象，使这些观察者对象能够自动更新。&lt;img src =&quot;http://blog.csdn.net/adminadmin/aggbug/1568149.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 18 Apr 2007 03:04:00 +0800</pubDate><author>adminadmin</author><comments>http://blog.csdn.net/adminadmin/archive/2007/04/17/1568149.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/adminadmin/archive/2007/04/17/1568149.aspx</guid><dc:creator>adminadmin</dc:creator></item><item><title>使用JNLP部署应用程序</title><link>http://blog.csdn.net/adminadmin/archive/2007/04/13/1563668.aspx</link><wfw:comment>http://blog.csdn.net/adminadmin/comments/1563668.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/adminadmin/comments/commentRss/1563668.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1563668</trackback:ping><description>使用Java网络装载协议（JNLP）远程客户就可以访问和运行那些位于本地机器的应用程序。JNLP应用程序能使应用程序像标准的Java applets一样通过Web浏览器访问，并且在客户主机上JNLP可以限制为一个安全的“沙盒（sandbox）”。不像applets，JNLP应用程序不运行在客户的浏览器内部；相反，Web浏览器只作为应用程序的一个起点或者安装工具。&lt;img src =&quot;http://blog.csdn.net/adminadmin/aggbug/1563668.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 14 Apr 2007 00:05:00 +0800</pubDate><author>adminadmin</author><comments>http://blog.csdn.net/adminadmin/archive/2007/04/13/1563668.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/adminadmin/archive/2007/04/13/1563668.aspx</guid><dc:creator>adminadmin</dc:creator></item></channel></rss>