码迷,mamicode.com
首页 >  
搜索关键字:connection has timed    ( 17005个结果
Maximum Subarray
题目 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、gvim在windows下中文乱码的终极解决方案
测试成功,完美解决。 只需修改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...
分类:Windows程序   时间:2014-06-19 11:04:39    阅读次数:323
Android learning Starting!
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
LeetCode ---- Merge Sorted Array
题目链接Problem discriptionGiven two sorted integer arrays A and B, merge B into A as one sorted array.Note:You may assume that A has enough space (size t...
分类:其他好文   时间:2014-06-16 11:12:36    阅读次数:192
服务器用JDBC对mysql数据库进行操作
1:获取数据库连接 Connection connection=getConnection(); 2:准备SQL语句 3:调用Connection的creatStatement()方法获取Statement对象执行SQL语句 (注:Statement对象处理的SQL语句只能是INSERT,UPDATE或DELETE) statement=connection.createStatemen...
分类:数据库   时间:2014-06-15 16:56:45    阅读次数:209
Spring 3.2 ClassMetadataReadingVisitor 错误
nested exception is java.lang.IncompatibleClassChangeError: class org.springframework.core.type.classreading.ClassMetadataReadingVisitor has interface...
分类:编程语言   时间:2014-06-13 16:38:47    阅读次数:373
Leetcode:Path Sum 二叉树路径和
Path Sum: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 giv...
分类:其他好文   时间:2014-06-13 16:09:02    阅读次数:237
Leetcode:Linked List Cycle 链表是否存在环
Linked List Cycle:Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?解题分析:大致思想就是设置两个指针,一个指针每次...
分类:其他好文   时间:2014-06-13 14:41:54    阅读次数:238
mysql安装
sudo start mysql #手动的话这样启动sudo stop mysql #手动停止在命令终端上输入mysql -u root -p./start_navicat connection链接即可。当你修改了配置文件後,你需要重启 mysqld 才能使这些修改生效。要想检查 mysqld 进程...
分类:数据库   时间:2014-06-12 07:48:37    阅读次数:410
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!