摘要: 1、Ext.grid.GroupingView主要配置项: enableGroupingMenu:是否在表头菜单中进行分组控制,默认为true groupByText:表头菜单中分组控制的菜单文字,默认为'Group By This Field' enableNoGroups:是否允许用户关闭分组功... 阅读全文
posted @ 2014-08-23 16:38 残星 阅读(8656) 评论(0) 推荐(0) 编辑
摘要: private boolean import_to_database(String excel_path) throws BiffException, IOException, HsException{ File file = new File(excel_path);//根据文件名创... 阅读全文
posted @ 2014-08-23 16:26 残星 阅读(5308) 评论(0) 推荐(0) 编辑
摘要: if(document.getElementById("lxdj_radio").checked){ colQd = new Ext.grid.ColumnModel(colMArray_lxdj); }else{ colQd = new Ext.grid.ColumnModel(colM... 阅读全文
posted @ 2014-08-23 16:18 残星 阅读(2361) 评论(0) 推荐(0) 编辑
摘要: 1.分析表与索引(analyze 不会重建索引)analyze table tablename compute statistics等同于 analyze table tablename compute statistics for table for all indexes for all col... 阅读全文
posted @ 2014-08-23 16:01 残星 阅读(2292) 评论(0) 推荐(0) 编辑
摘要: ... 阅读全文
posted @ 2014-08-23 09:38 残星 阅读(3401) 评论(1) 推荐(0) 编辑
摘要: Ext实现方式://方法一var key = new Ext.KeyMap(document,{key: 8,fn: function(obj,e){var type = e.target.type;var readonly = e.target.readOnly;if(type != 'text'... 阅读全文
posted @ 2014-08-23 09:33 残星 阅读(3307) 评论(1) 推荐(1) 编辑
摘要: HashMap dgzhMap = Dict.getDict("dgzh");Iterator it_d = dgzhMap.entrySet().iterator(); while (it_d.hasNext()) { Map.Entry entry_d = (... 阅读全文
posted @ 2014-08-23 09:26 残星 阅读(17160) 评论(1) 推荐(0) 编辑
摘要: /** * 当浮点型数据位数超过10位之后,数据变成科学计数法显示。用此方法可以使其正常显示。 * @param value * @return Sting */ public static String formatFloatNumber(double... 阅读全文
posted @ 2014-08-23 09:11 残星 阅读(45251) 评论(0) 推荐(1) 编辑
摘要: DateTools.javaimport java.text.SimpleDateFormat;import java.util.Date;/** * 日期操作类 */public class DateTools { /**yyyyMMddHHmmss * * @return... 阅读全文
posted @ 2014-08-23 09:06 残星 阅读(35860) 评论(1) 推荐(2) 编辑
摘要: 阅读全文
posted @ 2014-08-23 08:54 残星 阅读(1343) 评论(0) 推荐(0) 编辑
摘要: 第一种:循环检查替换//供使用者调用 function trim(s){ return trimRight(trimLeft(s)); } //去掉左边的空白 function trimLeft(s){ if(s == null) { return ""... 阅读全文
posted @ 2014-08-23 08:52 残星 阅读(230475) 评论(4) 推荐(15) 编辑
摘要: fileclear.shtamcdir=${HOME}/ora/user_projects/domains/tamccd ${tamcdir}echo rm -f `ls heapdump*.phd`rm -f heapdump*.phdecho rm -f `ls javacore*.txt`rm... 阅读全文
posted @ 2014-08-23 08:50 残星 阅读(346987) 评论(6) 推荐(20) 编辑
摘要: 语句写法:find对应目录-mtime+天数-name"文件名"-execrm-rf{}\; 例1: 将/usr/local/backups目录下所有10天前带"."的文件删除 find/usr/local/backups-mtime+10-name"*.*"-execrm-rf{}\; fin... 阅读全文
posted @ 2014-08-23 08:30 残星 阅读(88504) 评论(1) 推荐(0) 编辑
摘要: 比如一个目录下有1,2,3,4,5这五个文件,现在我需要删除除了2以外的所有文件,那么我可以使用find . ! -name 2 -exec rm -f {} \;当然你还可以配合着 -maxdepth 来更精准的删除了.下面演示删除的范围仅限于当前目录.find . -maxdepth 1 ! -... 阅读全文
posted @ 2014-08-23 08:22 残星 阅读(11887) 评论(0) 推荐(0) 编辑
摘要: typeof 返回的是字符串,有六种可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"" if (reValue==undefined){ alert("undefined"); } 发现判断不出来,最后查了下资料要用type... 阅读全文
posted @ 2014-08-23 08:18 残星 阅读(396) 评论(0) 推荐(0) 编辑
摘要: tar [-j|-z][cv][-f 新建的文件名] filename... <==打包与压缩tar [-j|-z][tv][-f 新建的文件名] <==查看文件名tar [-j|-z][xv][-f 新建的文件名] [-C 目录] <== 解压缩参数:-c: 新建打包文件,可搭配-v来查看过程被打... 阅读全文
posted @ 2014-08-23 08:12 残星 阅读(1887) 评论(0) 推荐(0) 编辑