Code
文章平均质量分 61
yangrongcan
这个作者很懒,什么都没留下…
展开
-
代码动态生成利器ASM
作者:薛谷雨作者简介薛谷雨,NORDSAN(北京)信息科技开发有限公司高级JAVA研发工程师,正致力于企业级异构数据交换的服务器产品的研发,在J2EE和WEB SERVICE方面有较为丰富的开发经验,您可以通过rainight@126.com与他联系。前言代码生成器(code generator,CG),顾名思义就是生成代码的工具。有了它,你就可以从一组简单的设定或者数据库转载 2004-09-26 21:02:00 · 683 阅读 · 0 评论 -
正则表达式ex2
String MDYToDMY(String input) { return Regex.Replace(input, "//b(?//d{1,2})/(?//d{1,2})/(?//d{2,4})//b", "${day}-${month}-${year}"); }转载 2004-12-13 22:46:00 · 745 阅读 · 0 评论 -
正则表达式(C#)
StringBuilder result = new StringBuilder(); Regex r = new Regex("/"(?//w+):(?//w+)%(?//w+)/"", RegexOptions.Compiled); for( Match m = r.Match(input); m.Success; m = m.NextMatch() ) { result.Appe转载 2004-12-13 21:41:00 · 684 阅读 · 0 评论 -
正则表达式ex5
bool IsValidEmail(string strIn){ // Return true if strIn is in valid e-mail format. return Regex.IsMatch(strIn, @"^([/w-/.]+)@((/[[0-9]{1,3}/.[0-9]{1,3}/.[0-9]{1,3}/.)|(([/w-]+/.)+))([a-zA-Z]{2,转载 2004-12-13 22:50:00 · 808 阅读 · 0 评论 -
正则表达式ex4
String CleanInput(string strIn) { // Replace invalid characters with empty strings. return Regex.Replace(strIn, @"[^/w/.@-]", ""); }转载 2004-12-13 22:49:00 · 774 阅读 · 0 评论 -
正则表达式ex1
void DumpHrefs(String inputString) { Regex r; Match m; r = new Regex("href//s*=//s*(?:/"(?[^/"]*)/"|(?//S+))", RegexOptions.IgnoreCase|RegexOptions.Compiled);转载 2004-12-13 22:44:00 · 742 阅读 · 0 评论 -
HTML编辑器列表
Abraxas - CoverSite 2 is a WYSIWYG portal and professional homepage editor. Shareware with free, standard and enterprise versions. ActiveSquare - In-browser WYSIWYG HTML content authoring Acti转载 2004-11-19 22:31:00 · 1637 阅读 · 0 评论 -
在struts中分页的一种实现
我的项目中的分页功能1, 思路 使用一个页面控制类,它记录页面信息,如上页,下页,当前页等。在查询的Action中,将这个控制类和查询条件一起传递给数据库访问bean,然后将这两个参数保存在用户session中。在分页控制Action中,利用接收到的分页参数调用数据库访问的bean. 2,实现 (1)分页控制类/* @author nick转载 2004-11-08 23:35:00 · 669 阅读 · 0 评论 -
利用WMI进行磁盘配额
You just need to create a new instance of a win32_quotadisk class. Something like this should do... (error checking omitted!) ..... ManagementClass c = new ManagementClass("Win32_转载 2004-10-19 10:59:00 · 1086 阅读 · 2 评论 -
MSDN QUOTA源代码
ExampleThe following code example uses the Quota property to apply a quota template to a site collection on the specified virtual server.[Visual Basic .NET]Dim globalAdmin As New SPGlobalAdmin()转载 2004-10-19 10:53:00 · 1209 阅读 · 0 评论 -
磁盘配额
using System;using DiskQuotaTypeLibrary;namespace Ex3cut3.Libraries{ /// /// /// public class QuotaClass { private DiskQuotaControlClass _diskQuotaControl; //This转载 2004-10-19 10:51:00 · 974 阅读 · 1 评论 -
正则表达式ex3
String Extension(String url) { Regex r = new Regex(@"^(?/w+)://[^/]+?(?:/d+)?/", RegexOptions.Compiled); return r.Match(url).Result("${proto}${port}"); }转载 2004-12-13 22:48:00 · 799 阅读 · 0 评论