`
fengyie007
  • 浏览: 153489 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表

正则技巧

1,用正则替换空行 \n[\s| ]*\r    
1,在.bashrc_profile末尾添加以下内容: # 让ls和dir命令显示中文和颜色 alias ls ='ls --show-control-chars --color' alias dir ='dir -N --color' # 设置为中文环境,使提示成为中文 export LANG="zh_CN.GBK" # 输出为中文编码 export OUTPUT_CHARSET="GBK"  2,在.inputrc末尾添加以下内容: # 关闭bash命令行8字节字符转义符的转换 set convert-meta off # ...

ubuntu9.04技巧

1,ubuntu的文件管理器nautilus中打终端的插件     apt-get install nautilus-open-terminal   2,设置代理上网     在/etc/profile中最后,添加如下 HTTP_PROXY=http://192.168.1.110:8080 export HTTP_PROXY   3,禁用pc喇叭     在/etc/inputrc中,取消这一行前面的注释 #set bell style none      然后在/etc/modprobe.d/blacklist中,添加以下内容即可。 blacklist pcspkr ...
原文地址:Equinox p2 Removal     Eclipse platform Ganymede/3.4包含两种更新管理器:原来的更新管理器和新的Equinox P2更新管理器.eclipse默认采用的p2更新管理器,原来的更新管理器被隐藏了.按以下的方法可以还原到原来的更新管理器.    1. 手动删除以下文件或目录:            eclipse/features/*.p2*            eclipse/plugins/org.eclipse.*.p2*            eclipse/plugins/org.eclipse.ecf*    ...
因为在jdk1.3中没有ImageIO类,只能使用下面的方法来保存jpeg文件. OutputStream toClient = resp.getOutputStream(); JPEGImageEncoder encoder =JPEGCodec.createJPEGEncoder(toClient); encoder.encode(image); toClient.close();  
1 ,Real-time Specification for Java Description: The Real-Time Specification for Java extends the JavaTM platform to support both current practice and advanced real-time systems application programming.   2 ,Boundary-Scan API Description: This API targeted the JavaCardTM platform so as to allow it to ...

SQL语句

CREATE TABLE `stock` (   `outcount` int(11) default NULL,   `incount` int(11) default NULL,   `dd` date NOT NULL default '0000-00-00',   `pid` varchar(10) NOT NULL default '',   PRIMARY KEY  (`pid`,`dd`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;   DROP TABLE IF EXISTS `stock`; CREATE TAB ...
Oracle sql 性能优化调整   1. 选用适合的ORACLE优化器   ORACLE的优化器共有3种:   a. RULE (基于规则)   b. COST (基于成本)   c. CHOOSE (选择性)   设置缺省的优化器,可以通过对init.ora文件中OPTIMIZER_MODE参数的各种声明,如RULE,COST,CHOOSE,ALL_ROWS,FIRST_ROWS . 你当然也在SQL句级或是会话(session)级对其进行覆盖。   为了使用基于成本的优化器(CBO, Cost-Based Optimizer) , 你必须经常运行analyze 命令,以增加数据库中的对象 ...
function accDiv(arg1, arg2) { var t1 = 0, t2 = 0, r1, r2; try { t1 = arg1.toString().split(".")[1].length } catch (e) { } try { t2 = arg2.toString().split(".")[1].length } catch (e) { } with (Math) { r1 = Number(arg1.toString().replace(".", "")) ...
所有字节码都是用sun虚拟机编译的.以下内容都是在网上查阅,加上一些自己的分析,如果有不对之处请大家指出来.   1,循环外内定义变量 和 循环内定义变量 下面是代码和字节码,通过比较可以知道,两种方法字节码基本上是相同的.两者性能基本上相等. 在实际使用时建议根据语义来决定,不需要在循环外部使用的就定义在循环内部,这样也可以减少变量冲突的可能. 代码: public static void f1() { Object s; for (int i = 0; i < 10; i++) { s = new String(&quo ...
AcControl.exe:是装了Ngate游戏之后产生的 MenuKeyServer.exe:是装了掌中任务进程软件产生的 apabisms.exe:隐藏执行的程序,飞阅无限 TSRAutoStart.exe:GARMIN导航程序
1,sdrsdat.dat,导致自动上网.位置C:\system\date\sdrsdat.dat. 2,soundman.exe和videoman.exe,导致自动上网.位置c:\system \programs\。 3,s60sys.exe,导致自动上网.位置 c:\system\programs\s60sys.exe. 4,mssver.exe,导致收不到10086短信,据说还能导致自动发短信.位置\system\apps\aknrep1. 5,servtimer.dat,导致自动上网和收不到10086短信.位置C/system/data/servtimer.dat. 6,nok ...

AIX自用命令记录

按文件大小排序 :ls  -l|sort -n -k5 按文件日期排序 :ls  -t -l 定时任务:crontab -e crontab的格式:分钟 小时 月中的天数 月份 星期 命令 minute: 0 到 59 hour: 0 到 23 day_of_month: 1 到 31 month: 1 到 12 weekday: 星期日到星期六的 0 到 6 时 要在每星期日上午 2 时运行 fwlogmgmt 命令,请将下列各行添加至 crontab 文件底部: 0 2 * * 0 /usr/bin/fwlogmgmt -1   0,10,20,30,40,50 * * * * test. ...
findbugs http://findbugs.cs.umd.edu/eclipse/Spket http://spket.com/update/ checkstyle http://eclipse-cs.sourceforge.net/update call-hierarchy,implementors http://eclipse-tools.sourceforge.net/updates/Easy Explore http://easystruts.sourceforge.net/eclipse/updates/site.xmlpropedit http://propedit.sourc ...
将EJB的jar包放到domain的autodeploy目录下。
Global site tag (gtag.js) - Google Analytics