02 2015 档案

摘要:1. linux下以指定的编码打开文件:LANG=zh_CN vi fileName 2. 查看系统内存使用,可以使用free -m 或 top 3. 使用env查看所有环境变量 4. df –h 查看根目录下文件使用情况,fdisk –l 查看磁盘使用情况。du -h 查看当前目录下,所有目录的大 阅读全文
posted @ 2015-02-25 18:23 Jtianlin 阅读(433) 评论(0) 推荐(0)
摘要:1. 字符串常用命令: 替换: 1). %s/*/*/g 中,替换当前界面的所有符合规则的内容。 2). 替换文件中的字符串内容: find -name '要查找的文件名' | xargs perl -pi -e 's|被替换的字符串|替换后的字符串|g' 3). 替换多个文件夹中的字符串: sed 阅读全文
posted @ 2015-02-25 18:04 Jtianlin 阅读(340) 评论(0) 推荐(0)
摘要:文中内容主要转自:http://www.open-open.com/lib/view/open1327478028639.html http://www.open-open.com/lib/view/open1365991769687.html http://blog.csdn.net/lzm134 阅读全文
posted @ 2015-02-13 10:15 Jtianlin 阅读(2168) 评论(0) 推荐(0)
摘要:本文转自:http://www.linuxidc.com/Linux/2013-06/86057.htm 关于ora-01000:超出最大可打开的游标数 的一点理解 ORA-01000: maximum open cursors exceeded"怎么解决 ERROR at line 1: ORA- 阅读全文
posted @ 2015-02-10 18:23 Jtianlin 阅读(1228) 评论(0) 推荐(0)
摘要:本文转自:http://www.cnblogs.com/y724107196/p/4019586.html命令格式: mount [-t vfstype] [-o options] device dir 其中: 1.-t vfstype 指定文件系统的类型,通常不必指定。mount 会自动选择... 阅读全文
posted @ 2015-02-10 18:15 Jtianlin 阅读(315) 评论(0) 推荐(0)
摘要:1. 启动window服务(各种应用启动设置的地方)命令方式: 1). window 按钮(输入CMD的地方)处输入:services.msc ,然后执行。 // 输入命令正确,上面的待选框中会出现要执行的命令。msc 可以理解为Microsoft client 2). 计算机 -- 右键 -- 管 阅读全文
posted @ 2015-02-09 09:20 Jtianlin 阅读(317) 评论(0) 推荐(0)
摘要:1. 常用的开源站点,可以下载jar和源代码: http://sourceforge.net/ http://olex.openlogic.com/ https://github.com/ 阅读全文
posted @ 2015-02-08 17:45 Jtianlin 阅读(160) 评论(0) 推荐(0)
摘要:1. 不要怕类和文件多,保持代码的整洁,干净!2. 提高代码的准确性,不要等着测试出问题3. 完善的日志信息:自己处理的模块有进入信息的数据和下发信息的数量,各种产品的数据量。用以证明自己没错。 阅读全文
posted @ 2015-02-08 17:23 Jtianlin 阅读(240) 评论(0) 推荐(0)
摘要:1. MyElipse复制项目后,修改项目的发布名称的方式。右击你的项目,选择 properties -- > MyElipse -- > web,然后修改名称即可。 2. IDE查看源代码需要关联 src 文件 : 选中项目 -->右键 --> build path -- >Java Build 阅读全文
posted @ 2015-02-08 16:32 Jtianlin 阅读(558) 评论(0) 推荐(0)
摘要:1.关闭页面:window.close();2. union和union all的区别是,union会自动压缩多个结果集合中的重复结果,而union all则将所有的结果全部显示出来,不管是不是重复。3. union 和 union all都可以将多个结果集合并,而不仅仅是两个,你可以将多个结果集串... 阅读全文
posted @ 2015-02-07 17:36 Jtianlin 阅读(158) 评论(0) 推荐(0)