ORA-27302: failure occurred at: skgpspawn3 可能的原因及处理
问题现象:
Mon May 26 07:08:58 GMT+08:00 2014Process startup failed, error stack:
Mon May 26 07:08:58 GMT+08:00 2014Errors in file /oracle/app...
分类:
其他好文 时间:
2014-06-19 12:28:48
阅读次数:
314
题目
Find the contiguous subarray within an array (containing at least one number) which has the largest sum.
For example, given the array [?2,1,?3,4,?1,2,1,?5,4],
the contiguous subarray [4,...
分类:
其他好文 时间:
2014-06-19 12:08:20
阅读次数:
270
测试成功,完美解决。
只需修改VIM目录下面的这个文件_vimrc。
加油吧,骚年。很强大的!
set encoding=utf-8
set fileencodings=utf-8,chinese,latin-1
if has("win32")
set fileencoding=chinese
else
set fileencoding=utf-8
endif
"解决菜单乱码
source $VIMRUNTIME/delmenu.vim
source $VIMRUNTIME/menu.vim
"解决cons...
In recent years,mobile platform become more and more popular!At present,the flourishing mobile platform are iOS and Android,symbian has been declining,wp7 struggling!
Note that Android is an open,not...
分类:
移动开发 时间:
2014-06-16 12:26:35
阅读次数:
288
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.
For example:
Given the below binary tree and sum
...
分类:
其他好文 时间:
2014-06-15 19:26:23
阅读次数:
207
今天在一个项目中看到委托与事件的使用,故重新整理一个简单易懂的例子,仅供参考而已。
namespace DelegateAndEvent
{
public delegate void delegateTest(int a);//定义一个委托
public delegate void delegateErr(Exception e);//定义一个报错委托
class...
分类:
其他好文 时间:
2014-06-15 17:29:57
阅读次数:
143
java.lang.VerifyError:Stack map does not match the one at exception handler 385 in method ... at offset 377
我使用的 jar包( 下面是认为跟这个问题有关系的jar包)如下:
antrl-3.3-complete.jar
cglib-2.2.jar
cglib-nodep-2.2.2...
分类:
编程语言 时间:
2014-06-15 16:56:08
阅读次数:
476
部署项目时,启动Tomcat一直出错:java.lang.NoSuchMethodException: org.apache.catalina.deploy.WebXml addFilter
SEVERE: End event threw exception
java.lang.NoSuchMethodException: org.apache.catalina.deploy.WebXm...
分类:
编程语言 时间:
2014-06-15 16:03:10
阅读次数:
533
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that
adding up all the values along the path equals the given sum.
For example:
Given the below bin...
分类:
其他好文 时间:
2014-06-15 09:34:35
阅读次数:
226