<?xml version="1.0" standalone="yes"?>
<?xml-stylesheet type="text/css" href="css/rss.css"?>
<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>一直安静 - 开发</title><link>http://yyoo.cn/</link><description> - </description><generator>RainbowSoft Studio Z-Blog 1.6 Final Build 60816</generator><language>zh-CN</language><copyright>Copyright    &amp;lt;a href=&amp;quot;http://yyoo.cn&amp;quot;&amp;gt;    一直很安静&amp;lt;/a&amp;gt;  Some Rights Reserved.  © 2004-2009    </copyright><pubDate>Mon, 06 Sep 2010 08:54:20 +0800</pubDate><item><title>远程做Linux Iptables规则注意事项</title><author>chinadmin@188.com (一直安静)</author><link>http://yyoo.cn/live/iptables.html</link><pubDate>Sat, 09 May 2009 20:12:08 +0800</pubDate><guid>http://yyoo.cn/live/iptables.html</guid><description><![CDATA[在远程putty到linux主机上首次做iptables规则时需按以下步骤,以免造成远程断开再也登不了远程linux主机的麻烦. 　　1.清除原有filter规则. 　　[root@linux ~]# iptables -F 清除预设表filter中的所有规则链的规则 　　[root@linux ~]# iptables -X 清除预设表filter中使用者自定链中的规则 　　2.清除原有filter规则后的信息应为下面的样子 　　[root@linux ~]# iptables -L -n 　...]]></description><category>开发</category><comments>http://yyoo.cn/live/iptables.html#comment</comments><wfw:comment>http://yyoo.cn/xml-rpc/comment.asp?id=56&amp;key=acaeb2bd</wfw:comment><wfw:commentRss>http://yyoo.cn/sydication.asp?cmt=56</wfw:commentRss><trackback:ping>http://yyoo.cn/cmd.asp?act=tb&amp;id=56&amp;key=ca0f5028</trackback:ping></item><item><title>PHP正则表达式,从网址(url)中取得域名</title><author>chinadmin@188.com (一直安静)</author><link>http://yyoo.cn/live/50.html</link><pubDate>Fri, 06 Jun 2008 17:15:42 +0800</pubDate><guid>http://yyoo.cn/live/50.html</guid><description><![CDATA[以下代码可以从URL中获得域名例如:http://yyoo.cn/live/q.html得到yyoo.cnfunction get_domain($url){&nbsp; $pattern = &quot;/[\w-]+\.(com|net|org|gov|cc|biz|info|cn)(\.(cn|hk))*/&quot;;&nbsp; preg_match($pattern, $url, $matches);&nbsp; if(count($matches) &gt; 0) {&nbsp;&...]]></description><category>开发</category><comments>http://yyoo.cn/live/50.html#comment</comments><wfw:comment>http://yyoo.cn/xml-rpc/comment.asp?id=50&amp;key=76de0dd1</wfw:comment><wfw:commentRss>http://yyoo.cn/sydication.asp?cmt=50</wfw:commentRss><trackback:ping>http://yyoo.cn/cmd.asp?act=tb&amp;id=50&amp;key=58c9258a</trackback:ping></item><item><title>PHP删除MYSQL数据库所有表</title><author>chinadmin@188.com (一直安静)</author><link>http://yyoo.cn/live/46.html</link><pubDate>Sun, 09 Mar 2008 18:28:11 +0800</pubDate><guid>http://yyoo.cn/live/46.html</guid><description><![CDATA[如果不想删除库,只想删除库里的所有表,那就用这个脚本吧呵呵很方便的..&lt;?php$hostname ='localhost';$userid = 'user';$password = 'password';$dbname = 'dbname';$connect = mysql_connect($hostname,$userid,$password);mysql_select_db($dbname);$result = mysql_query(&quot;show table status ...]]></description><category>开发</category><comments>http://yyoo.cn/live/46.html#comment</comments><wfw:comment>http://yyoo.cn/xml-rpc/comment.asp?id=46&amp;key=38e66104</wfw:comment><wfw:commentRss>http://yyoo.cn/sydication.asp?cmt=46</wfw:commentRss><trackback:ping>http://yyoo.cn/cmd.asp?act=tb&amp;id=46&amp;key=06ad72bb</trackback:ping></item><item><title>解决JSP/JDBC MySQL乱码问题~~~</title><author>chinadmin@188.com (一直安静)</author><link>http://yyoo.cn/live/38.html</link><pubDate>Sat, 01 Dec 2007 11:51:50 +0800</pubDate><guid>http://yyoo.cn/live/38.html</guid><description><![CDATA[首先JSP的request 默认为ISO8859_1，所以在处理中文的时候，要显示中文的话，必须转成GBK的，如下String str=new String(request.getParameter(&quot;name&quot;).getBytes(&quot;ISO8859-1&quot;),&quot;GBK&quot;); out.println(str); 这样就可以显示中文了MYSQL操作时的中文问题：这个要看MySQL的默认编码了，一般不调整的话为latin1其实和ISO8859...]]></description><category>开发</category><comments>http://yyoo.cn/live/38.html#comment</comments><wfw:comment>http://yyoo.cn/xml-rpc/comment.asp?id=38&amp;key=33f753db</wfw:comment><wfw:commentRss>http://yyoo.cn/sydication.asp?cmt=38</wfw:commentRss><trackback:ping>http://yyoo.cn/cmd.asp?act=tb&amp;id=38&amp;key=e91a51fd</trackback:ping></item><item><title>Java企业应用－Hibernate的例子</title><author>chinadmin@188.com (一直安静)</author><link>http://yyoo.cn/live/31.html</link><pubDate>Sat, 01 Sep 2007 19:38:58 +0800</pubDate><guid>http://yyoo.cn/live/31.html</guid><description><![CDATA[对象关系映射(Object Relative Mapping)简称ORM，是面向对象开发的一个热点，用来解决JDBC开发中手动进行OR映射的繁杂与不便。EJB中的实体Bean在这个领域是很著名的&mdash;&mdash;既因为它的先进而著名，也因为它的低效而著名。有过实体Bean开发经验的人可能都会为实现远程接口造成的效率低下而头痛，在很多不大不小的项目中，使用实体Bean是否得不偿失，争论很大。一个轻量级的持久化方案也许能够解决一些问题，Hibernate应此而生。　　Hibernate是一...]]></description><category>开发</category><comments>http://yyoo.cn/live/31.html#comment</comments><wfw:comment>http://yyoo.cn/xml-rpc/comment.asp?id=31&amp;key=a6268b1f</wfw:comment><wfw:commentRss>http://yyoo.cn/sydication.asp?cmt=31</wfw:commentRss><trackback:ping>http://yyoo.cn/cmd.asp?act=tb&amp;id=31&amp;key=a5b63e1f</trackback:ping></item><item><title>FCKeditor编辑器在jsp环境的应用</title><author>chinadmin@188.com (一直安静)</author><link>http://yyoo.cn/live/28.html</link><pubDate>Thu, 02 Aug 2007 15:10:50 +0800</pubDate><guid>http://yyoo.cn/live/28.html</guid><description><![CDATA[在线编辑器对于我们作新闻产品之类的程序是很重要的，FCKeditor,跨平台的&nbsp;1.下载FCKeditor.java 2.3 (FCKeditot for java)FCKeditor 2.2 (FCKeditor基本文件)以下是下载地址：http://www.fckeditor.net/download/default.html2.建立项目:建立项目tomcat/webapps/TestFCKeditor.3.将FCKeditor2.2解压缩将FCKeditor2.2解压缩,将整个目...]]></description><category>开发</category><comments>http://yyoo.cn/live/28.html#comment</comments><wfw:comment>http://yyoo.cn/xml-rpc/comment.asp?id=28&amp;key=f6a7f349</wfw:comment><wfw:commentRss>http://yyoo.cn/sydication.asp?cmt=28</wfw:commentRss><trackback:ping>http://yyoo.cn/cmd.asp?act=tb&amp;id=28&amp;key=cc602f04</trackback:ping></item><item><title>用jsp实现登陆验证码的例子</title><author>chinadmin@188.com (一直安静)</author><link>http://yyoo.cn/live/26.html</link><pubDate>Thu, 26 Jul 2007 11:38:19 +0800</pubDate><guid>http://yyoo.cn/live/26.html</guid><description><![CDATA[tomcat webapps下创建一个目录validate，建好WEB-INF目录，里面创建好web.xml文件，代码不用编写，有个声明就行：web.xml:&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;web-app version=&quot;2.4&quot;xmlns=&quot;http://java.sun.com/xml/ns/j2ee&quot;xmlns:xsi=&quot;http://...]]></description><category>开发</category><comments>http://yyoo.cn/live/26.html#comment</comments><wfw:comment>http://yyoo.cn/xml-rpc/comment.asp?id=26&amp;key=3fb20eb2</wfw:comment><wfw:commentRss>http://yyoo.cn/sydication.asp?cmt=26</wfw:commentRss><trackback:ping>http://yyoo.cn/cmd.asp?act=tb&amp;id=26&amp;key=9034b4d5</trackback:ping></item><item><title>jsp分页技术,实现高效查询</title><author>chinadmin@188.com (一直安静)</author><link>http://yyoo.cn/live/25.html</link><pubDate>Wed, 18 Jul 2007 20:35:38 +0800</pubDate><guid>http://yyoo.cn/live/25.html</guid><description><![CDATA[Jsp如下：&lt;%@ page language=&quot;java&quot; import=&quot;java.util.*,java.sql.*&quot; %&gt;&lt;%@ page contentType=&quot;text/html;charset=gb2312&quot;%&gt;&lt;jsp:useBean id=&quot;cn&quot; scope=&quot;page&quot; class=&quot;myConnection.Conn&quot; /...]]></description><category>开发</category><comments>http://yyoo.cn/live/25.html#comment</comments><wfw:comment>http://yyoo.cn/xml-rpc/comment.asp?id=25&amp;key=c204642d</wfw:comment><wfw:commentRss>http://yyoo.cn/sydication.asp?cmt=25</wfw:commentRss><trackback:ping>http://yyoo.cn/cmd.asp?act=tb&amp;id=25&amp;key=01aba6a9</trackback:ping></item><item><title>struts入门：struts实现用户登陆</title><author>chinadmin@188.com (一直安静)</author><link>http://yyoo.cn/live/24.html</link><pubDate>Sun, 08 Jul 2007 13:00:20 +0800</pubDate><guid>http://yyoo.cn/live/24.html</guid><description><![CDATA[struts实现用户登陆的例子：&nbsp;&lt;%@ page contentType=&quot;text/html; charset=gb2312&quot;%&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;%@ taglib uri=&quot;/WEB-INF/struts-bean.tld&quot; prefix=&quot;bean&quot; %&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;...]]></description><category>开发</category><comments>http://yyoo.cn/live/24.html#comment</comments><wfw:comment>http://yyoo.cn/xml-rpc/comment.asp?id=24&amp;key=5cd82f1a</wfw:comment><wfw:commentRss>http://yyoo.cn/sydication.asp?cmt=24</wfw:commentRss><trackback:ping>http://yyoo.cn/cmd.asp?act=tb&amp;id=24&amp;key=9eb79674</trackback:ping></item><item><title>理解protected，public 和 private 之间区别</title><author>chinadmin@188.com (一直安静)</author><link>http://yyoo.cn/live/22.html</link><pubDate>Thu, 03 May 2007 15:39:47 +0800</pubDate><guid>http://yyoo.cn/live/22.html</guid><description><![CDATA[学JAVA时老师给总结的:                                                Private成员                        缺省成员                        Protected成员                        public成员                                        同一类中成员                        是              ...]]></description><category>开发</category><comments>http://yyoo.cn/live/22.html#comment</comments><wfw:comment>http://yyoo.cn/xml-rpc/comment.asp?id=22&amp;key=f8654266</wfw:comment><wfw:commentRss>http://yyoo.cn/sydication.asp?cmt=22</wfw:commentRss><trackback:ping>http://yyoo.cn/cmd.asp?act=tb&amp;id=22&amp;key=ef8f42b2</trackback:ping></item></channel></rss>
