摘要: run program in other path and back to original path.@echo offrem get current pathset curpath=%cd% rem run the java classcd /D C:\windows\system32java Client %1=%2 rem return to current pathcd /... 阅读全文
posted @ 2005-11-14 20:28 margiex 阅读(335) 评论(0) 推荐(0)
摘要: 只能输入数字:“^[0-9]*$”只能输入n位的数字:“^\d{n}$”只能输入至少n位数字:“^\d{n,}$”只能输入m-n位的数字:“^\d{m,n}$”只能输入零和非零开头的数字:“^(0|[1-9][0-9]*)$”只能输入有两位小数的正实数:“^[0-9]+(.[0-9]{2})?$”只能输入有1-3位小数的正实数:“^[0-9]+(.[0-9]{1,3})?$”只能输入非零的正整数:... 阅读全文
posted @ 2005-11-14 20:09 margiex 阅读(286) 评论(0) 推荐(0)
摘要: you can start it by command line:Start /B WebDev.WebServer.exe /port:7171 /path:"F:\My Web Site" 阅读全文
posted @ 2005-11-14 14:40 margiex 阅读(251) 评论(0) 推荐(0)