東南西北風

生活就像一杯加了糖的苦咖啡。
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页

2009年4月15日

摘要: 对分组正则式“((23)(45))”----------其中包括3个组成部分:"2345" 、 "23 " 、 "45" ,编号分别为1、2、3 eg: ------------- "((23)(45))\1" 表示对"23452345"进行匹配 ------------- "((23)(45))\2" 表示对"234523"进行匹配... 阅读全文

posted @ 2009-04-15 10:46 东南西北风 阅读(208) 评论(0) 推荐(0)

摘要: 对贪婪与非贪婪模式来说,它是针对量词而言的,其修饰符放在量词后面 量词包括:* + ? {n} {n, } {m, n} 贪婪模式下在进行匹配时,将按照最大限度的可能进行匹配。 非贪婪模式下在进行匹配时,将按照最小限度的可能进行匹配。 例如:字符串“abbbabbba”,使用a[\w]+a进... 阅读全文

posted @ 2009-04-15 10:38 东南西北风 阅读(120) 评论(0) 推荐(0)

2009年4月12日

摘要: 1、进入root权限模式 su - 2、进入etc/目录下修改inittab文件的内容 vi inittab ------ 表示进入文件查看 i ------ 进入编辑,按下 'i' 后表示可以输入删除内容 ESC ------- 退出编辑模式 ... 阅读全文

posted @ 2009-04-12 00:28 东南西北风 阅读(2507) 评论(0) 推荐(0)

2009年4月10日

摘要: FCKeditor是目前互联网上最好的在线编辑器,功能强大,支持IE 5.5+ (Windows), Firefox 1.0+, Mozilla 1.3+ and Netscape 7.1+.浏览器,无平台限制,能够在Windows, Mac and Linux上正常运行,可以和多种WEB语言融合,如ASP.Net 、ASP、ColdFusion、PHP、Java、 Active-FoxPro、L... 阅读全文

posted @ 2009-04-10 17:09 东南西北风 阅读(300) 评论(0) 推荐(0)

2009年4月2日

摘要: 从数据库中取出数据: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->select * from dept into outfile 'D:/test.txt' fields terminated by ',' enclosed by ' "... 阅读全文

posted @ 2009-04-02 20:06 东南西北风 阅读(124) 评论(0) 推荐(0)

2009年3月31日

摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->String driver = "com.mysql.jdbc.Driver"; String url = "jdbc:mysql://192.168.2.4/test"; String use... 阅读全文

posted @ 2009-03-31 16:22 东南西北风 阅读(154) 评论(0) 推荐(0)

2009年3月27日

摘要: 1、out对象:把信息回送到客户端的浏览器中。 2、request对象:用来得到客户端的信息 3、response对象:处理服务器端对客户端的一些响应。 4、 application对象:用来保存网站的一些全局变量。 5、session对象:用来保存单个用户访问时的一些信息。 6、cookie对象:将服务器端的一些信息写到客户端的浏览器中。 7、pageContext对象:提供了访问和放置页面中共... 阅读全文

posted @ 2009-03-27 20:08 东南西北风 阅读(289) 评论(0) 推荐(0)

摘要: 请求重定向 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->reponse.sendRedirct("test.htm") 页面自动刷新 Code Code highlighting produced by Actipro CodeHig... 阅读全文

posted @ 2009-03-27 15:13 东南西北风 阅读(210) 评论(0) 推荐(0)

摘要: 1、缓冲器 flushBuffer() getBufferSize() isCommited() reset() setBufferSize() 2、响应URL encodeRedirectUrl() encodeRedirectURL() encodeURL() sendRedirect() 3、... 阅读全文

posted @ 2009-03-27 14:23 东南西北风 阅读(255) 评论(0) 推荐(0)

摘要: 当前的地址信息是:http://127.0.0.1:8080/FirstMyEcilpse/servlet/ContextServlet 1.协议 getMethod()-----GET getProtocol()---HTTP/1.1 getScheme()-----http 2.客户信息 getRemoteAddr()---127.0.0.1 getRemoteHost()---1... 阅读全文

posted @ 2009-03-27 13:51 东南西北风 阅读(577) 评论(0) 推荐(1)

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页