摘要: function IEVer(){ var rv = -1; if (navigator.appName == 'Microsoft Internet Explorer'){ var ua = navigator.userAgent; var re = new RegExp("MSIE ([0-9] 阅读全文
posted @ 2017-09-01 16:51 嘀哩哩 阅读(286) 评论(0) 推荐(0)
摘要: Const SHEET_CONFIG = "config"Const RNG_CFG_TEMPLATE = "B3"Const RNG_CFG_CSV_GROUP = "B7"Const RNG_CFG_CSV_TRHKSK = "B5"Const RNG_CFG_OUTPUT = "B9" Con 阅读全文
posted @ 2017-02-10 15:12 嘀哩哩 阅读(438) 评论(0) 推荐(0)
摘要: 基础教程http://www.k4.dion.ne.jp/~mms/unix/shellscript/shell_sample.html cat /dev/null > abc.log (clear the file of abc.log)$ cat filename (show the conte 阅读全文
posted @ 2017-01-26 12:29 嘀哩哩 阅读(201) 评论(0) 推荐(0)
摘要: sql%count 最近一次sql执行的件数SUBSTR(string , int i) // i番目から最後までの文字列を切り取るSUBSTR(string , int i, int j) // i番目からj文二の文字列を切り取るNVL(para, string) // paraはnullであれば 阅读全文
posted @ 2016-12-28 16:41 嘀哩哩 阅读(139) 评论(0) 推荐(0)
摘要: 返回当前默认文件路径: Application.DefaultFilePath 返回应用程序完整路径 Application.Path 返回当前工作薄的路径 ThisWorkbook.Path Application.ActiveWorkbook.Path 只返回路径 Application.Act 阅读全文
posted @ 2016-10-21 17:16 嘀哩哩 阅读(202) 评论(0) 推荐(0)
摘要: 在eclipse中开启tomcat服务器时报错:端口已被占用。 这是因为在tomcat开启的状态下,eclipse异常关闭,导致tomcat一直占用端口。 解决方法 在cmd窗口中输入命令-- netstat -ano|findstr 8080 (8080指的是被占用的端口号) 该命令执行完之后,可 阅读全文
posted @ 2016-10-04 17:16 嘀哩哩 阅读(5706) 评论(0) 推荐(0)