转自:http://blog.csdn.net/zlpdaisy/article/details/6134314用Runtime.getRuntime().exec()方法执行Linux的一个Shell脚本时,报Cannot
run program "./script/abc.sh": java.i...
分类:
编程语言 时间:
2014-05-16 20:18:10
阅读次数:
765
应用程序连接测试数据库时报ORA-12516:TNS:listener could not find
available handler with matching protocol stack 检查监听日志文件,发现大量的TNS-12516错误 cd
/u01/app/oracle/product...
分类:
其他好文 时间:
2014-05-16 18:23:03
阅读次数:
247
注意:当使用 fork 函数加载独立进程的时候,你必须总是在 fork 后面调用 exec
或者类似的函数。 基于 Core Foundation、Cocao 或者 Core Data 框架(无论显式还是隐式关联)的应用程序随后调用 exec
函数或者类似的函数都会导出不确定的结果。分叉函数编辑头文...
分类:
其他好文 时间:
2014-05-16 06:26:39
阅读次数:
285
题目: Givennpoints on a 2D plane, find the maximum
number of points that lie on the same straight line.解题思路:
第一反应:枚举两个点组成的直线,然后看其他的点在不在这条直线上,在此过程中统计最大.....
分类:
其他好文 时间:
2014-05-16 05:54:57
阅读次数:
193
前面介绍过在Linux中如何查看文件的属性,在Linux文件权限详解中我们介绍了Linux文件的三种身份和四种权限,三种身份分别为:u:文件的拥有者g:文件所属的群组o:其他用户对于每个身份,又有四种权限,分别为:r:读取文件的权限(read)w:写入文件的权限(write)x:执行的权限(exec...
分类:
系统相关 时间:
2014-05-15 16:12:51
阅读次数:
419
【题目】
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest substring is "b", with the len...
分类:
其他好文 时间:
2014-05-15 14:40:14
阅读次数:
320
Given an array of integers, every element appears twice except for one. Find that single one....
分类:
其他好文 时间:
2014-05-15 07:20:39
阅读次数:
264
【题目】
Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic substring.
【题意】
题意是找出字符串S中最长回文子串,S最长为1000,保证有唯一解
【思路】
原字符串用特殊字符#间隔,如下所示:
#a...
分类:
其他好文 时间:
2014-05-15 03:31:25
阅读次数:
299
1 STL的map表里有一个erase方法用来从一个map中删除掉指令的节点 2 eg: 3 map
mapTest; 4 typedef map::iterator ITER; 5 ITER iter=mapTest.find(key); 6
mapTest.erase(iter...
分类:
其他好文 时间:
2014-05-14 09:19:03
阅读次数:
319
xargs 是在做什么的呢?就以字面上的意义来看,x 是加减乘除的乘号,args 则是
arguments (参数) 的意思,所以说,这个玩意儿就是在产生某个命令的参数的意思!xargs 可以读入 stdin
的数据,并且以空格符或断行字符作为分辨,将 stdin 的数据分隔成为 argumen.....
分类:
系统相关 时间:
2014-05-14 08:59:25
阅读次数:
518