<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>cyhgohappy的专栏</title><link>http://blog.csdn.net/cyhgohappy/</link><description /><dc:language>zh-CN</dc:language><lastUpdateTime>Sun, 16 Nov 2008 23:07:00 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>cyhgohappy</dc:creator><title>Java之classpath </title><link>http://blog.csdn.net/cyhgohappy/archive/2008/11/16/3314290.aspx</link><pubDate>Sun, 16 Nov 2008 23:03:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/11/16/3314290.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/3314290.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/11/16/3314290.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/3314290.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3314290</trackback:ping><description>Java之classpath &lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/3314290.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>cyhgohappy</dc:creator><title>MINA入门</title><link>http://blog.csdn.net/cyhgohappy/archive/2008/11/11/3279058.aspx</link><pubDate>Tue, 11 Nov 2008 23:52:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/11/11/3279058.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/3279058.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/11/11/3279058.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/3279058.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3279058</trackback:ping><description>MINA入门&lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/3279058.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>cyhgohappy</dc:creator><title>JTable 加入JRadioButton</title><link>http://blog.csdn.net/cyhgohappy/archive/2008/10/14/3074771.aspx</link><pubDate>Tue, 14 Oct 2008 16:44:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/10/14/3074771.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/3074771.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/10/14/3074771.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/3074771.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3074771</trackback:ping><description>JTable 加入JRadioButton&lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/3074771.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>cyhgohappy</dc:creator><title>JTable 加入JButton</title><link>http://blog.csdn.net/cyhgohappy/archive/2008/10/14/3074467.aspx</link><pubDate>Tue, 14 Oct 2008 16:04:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/10/14/3074467.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/3074467.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/10/14/3074467.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/3074467.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3074467</trackback:ping><description>JTable 加入JButton&lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/3074467.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>cyhgohappy</dc:creator><title>UnsupportedClassVersionError  </title><link>http://blog.csdn.net/cyhgohappy/archive/2008/10/13/3069799.aspx</link><pubDate>Mon, 13 Oct 2008 16:04:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/10/13/3069799.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/3069799.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/10/13/3069799.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/3069799.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3069799</trackback:ping><description>&lt;br /&gt;        出现java.lang.UnsupportedClassVersionError 错误的原因，是因为我们使用高版本的JDK编译的Java class文件试图在较低版本的JVM上运行，所报的错误。&lt;br /&gt;        因为，高版本的JDK生成的class文件使用的格式，可能与低版本的JDK的.class文件格式不同。这样，低版本的JVM无法解释执行这个.class文件，会抛出java.lang.UnsupportedClassVersionError不支持的Class版本错误。&lt;br /&gt;这个错误尤其在JDK5与JDK5之前的版本上表现明显。因为，JDK5在Java语法上作了不少增强，引入了一些新的.class文件的元素，导致旧版本的JVM无法解释、执行.class文件。即使这个类并没有使用任何JDK5的新元素，但是JDK5生成的.class文件，JDK1.4及其以前的JVM都无法辨认！&lt;br /&gt;        所以，目前使用最广的，还是JDK1.4。很多软件和项目都无法使用JDK5。&lt;br /&gt;有一个名叫 Toby Reyelts 的开发人员决定消除&lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/3069799.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>cyhgohappy</dc:creator><title>__doPostBack函数</title><link>http://blog.csdn.net/cyhgohappy/archive/2008/10/12/3064158.aspx</link><pubDate>Sun, 12 Oct 2008 16:58:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/10/12/3064158.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/3064158.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/10/12/3064158.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/3064158.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3064158</trackback:ping><description>在.NET中，所有的服务器控件提交到服务器的时候，都会调用__doPostBack这个函数，所以灵活运用这个函数对于我们的帮助还是很大的。 &lt;br /&gt;&lt;br /&gt;比 如，在我们写程序的时候经常会需要动态的生成一些控件，最简单的方法就是通过一个字符串,比如string strButton   =   ,然后输出到页面，但是如果我们需要这个控件来执行一些服务器的功能，就比 较困难了。这里我们就可以用过借用__doPostBack这个函数来完成。接下来我觉个例子来说明一下具体如何调用。 &lt;br /&gt;&lt;br /&gt;既然要在服务 器端运行那么，我们可以声明一个不可见的LinkButton控件，那通常，我们希望一个控件不可见，通常都是把visible属性设为false。但是 在这里我们把LinkButton的Text属性设置为空，来是这个LinkButton不可见（为什么要这么设置，而不是直接设置visible属性， 我会在下面说明)，接下来我们可以在LinkButton里面写一些服务器端的代码。然后就是如何通过我们动态生成的&lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/3064158.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>cyhgohappy</dc:creator><title>showModalDialog和showModelessDialog有什么不同？</title><link>http://blog.csdn.net/cyhgohappy/archive/2008/10/11/3059417.aspx</link><pubDate>Sat, 11 Oct 2008 23:55:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/10/11/3059417.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/3059417.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/10/11/3059417.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/3059417.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3059417</trackback:ping><description>一、showModalDialog和showModelessDialog有什么不同？&lt;br /&gt;　　showModalDialog：被打开后就会始终保持输入焦点。除非对话框被关闭，否则用户无法切换到主窗口。类似alert的运行效果。&lt;br /&gt;　　showModelessDialog：被打开后，用户可以随机切换输入焦点。对主窗口没有任何影响(最多是被挡住一下而以。:P)
&lt;br /&gt;&lt;br /&gt;二、怎样才让在showModalDialog和showModelessDialog的超连接不弹出新窗口？&lt;br /&gt;　　在被打开的网页里加上就可以了。这句话一般是放在和之间的。&lt;br /&gt;&lt;br /&gt;三、怎样才刷新showModalDialog和showModelessDialog里的内容？&lt;br /&gt;　　在showModalDialog和showModelessDialog里是不能按F5刷新的，又不能弹出菜单。这个只能依靠javascript了，以下是相关代码：&lt;br /&gt;&lt;br /&gt;&lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/3059417.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>cyhgohappy</dc:creator><title>xPath </title><link>http://blog.csdn.net/cyhgohappy/archive/2008/10/11/3057972.aspx</link><pubDate>Sat, 11 Oct 2008 18:19:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/10/11/3057972.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/3057972.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/10/11/3057972.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/3057972.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3057972</trackback:ping><description>xPath &lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/3057972.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>cyhgohappy</dc:creator><title>xml配置 spring 中设置定时任务</title><link>http://blog.csdn.net/cyhgohappy/archive/2008/09/19/2950380.aspx</link><pubDate>Fri, 19 Sep 2008 10:29:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/09/19/2950380.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/2950380.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/09/19/2950380.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/2950380.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2950380</trackback:ping><description>spring 中设置定时任务 Quartz&lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/2950380.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>cyhgohappy</dc:creator><title> linux 下weblogic 基本操作</title><link>http://blog.csdn.net/cyhgohappy/archive/2008/09/16/2936548.aspx</link><pubDate>Tue, 16 Sep 2008 14:56:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/09/16/2936548.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/2936548.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/09/16/2936548.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/2936548.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2936548</trackback:ping><description>unix基础指令 

ls -a 显示当前文件夹下所有文件、文件夹（隐藏＋未隐藏）
 
ls 显示当前文件夹下所有未隐藏文件、文件夹
 
ls _lt 文件、文件夹按时间顺序显示
 
ls -l 当前文件夹下所有文件、文件夹详细信息
    drwxr-xr-x （d：文件夹，r：读权限，w：写权限，x：执行权限）
        d：文件夹；rwx：用户权限；r-x：组权限；r-x其他组权限
--------------------------------------------------------------------------------------------
pwd 显示当前文件夹目录
--------------------------------------------------------------------------------------------
cd 文件夹名 进入文件夹
 
cd .. 回到上级文件夹
------------------------------------------------------&lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/2936548.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>cyhgohappy</dc:creator><title>JAVA时间处理</title><link>http://blog.csdn.net/cyhgohappy/archive/2008/09/10/2910362.aspx</link><pubDate>Wed, 10 Sep 2008 17:34:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/09/10/2910362.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/2910362.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/09/10/2910362.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/2910362.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2910362</trackback:ping><description>JAVA时间处理&lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/2910362.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>cyhgohappy</dc:creator><title>GridView 中 DataFormatString 的使用</title><link>http://blog.csdn.net/cyhgohappy/archive/2008/09/07/2896367.aspx</link><pubDate>Sun, 07 Sep 2008 22:57:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/09/07/2896367.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/2896367.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/09/07/2896367.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/2896367.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2896367</trackback:ping><description>DataFormatString&lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/2896367.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>cyhgohappy</dc:creator><title>NetBeans 6.0 提高生产力之Java代码编辑器</title><link>http://blog.csdn.net/cyhgohappy/archive/2008/08/31/2854550.aspx</link><pubDate>Sun, 31 Aug 2008 09:49:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/08/31/2854550.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/2854550.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/08/31/2854550.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/2854550.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2854550</trackback:ping><description>netBeans swing&lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/2854550.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>cyhgohappy</dc:creator><title>ftp中bin和ascii的区别</title><link>http://blog.csdn.net/cyhgohappy/archive/2008/08/28/2843109.aspx</link><pubDate>Thu, 28 Aug 2008 13:24:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/08/28/2843109.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/2843109.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/08/28/2843109.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/2843109.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2843109</trackback:ping><description>ftp中bin和ascii的区别&lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/2843109.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>cyhgohappy</dc:creator><title>jQuery禁止回车</title><link>http://blog.csdn.net/cyhgohappy/archive/2008/08/27/2836901.aspx</link><pubDate>Wed, 27 Aug 2008 11:22:00 GMT</pubDate><guid>http://blog.csdn.net/cyhgohappy/archive/2008/08/27/2836901.aspx</guid><wfw:comment>http://blog.csdn.net/cyhgohappy/comments/2836901.aspx</wfw:comment><comments>http://blog.csdn.net/cyhgohappy/archive/2008/08/27/2836901.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/cyhgohappy/comments/commentRss/2836901.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2836901</trackback:ping><description>jQuery 禁止回车&lt;img src ="http://blog.csdn.net/cyhgohappy/aggbug/2836901.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>