git merge的基本用法为把一个分支或或某个commit的修改合并现在的分支上。 我们可以运行git merge -h查看其命令usage:gitmerge[options] [...] or:git merge[options] HEAD or:git merge--abort -n ...
分类:
其他好文 时间:
2014-07-03 10:39:05
阅读次数:
252
问题分析: [2014-01-16 20:18:26 - ] The connection to adb is down, and a severe error has occured. [2014-01-16 20:18:26 - ] You must restart adb and Eclips...
分类:
移动开发 时间:
2014-07-02 00:42:22
阅读次数:
333
压缩浏览器使用Accept-Encoding头来生命它支持压缩。服务器使用content-Encoding头确认响应已被压缩。持久连接request: Connection:keep-aliveresponse: Connection:keep-alive图片优化1.使用图片地图,将多个图片整合到一...
分类:
Web程序 时间:
2014-07-02 00:34:28
阅读次数:
290
具体解决方案参考的http://www.tomshardware.com/forum/171045-46-remote-desktop-connection-blank-desktopto solve it I opened two windows thru remote desktopthen i...
这段时间公司实行代理上网,不仅通过浏览器上网须要不停的输入username和password,在本地调试程序时候Eclipse居然也弹出框让输入username和password。如图:解决的方法:windows--preferences--general---Network Connection....
分类:
系统相关 时间:
2014-07-01 22:00:21
阅读次数:
400
动态web开发的最大特点是可以警醒数据库的操作,传统的jdbc操作由于错组哦步骤重复性造成程序性能下降。
西安回顾JDBC的操作原理
1、加载数据库驱动程序,数据库驱动程序通过classpath配置。
2、通过DirverManager类取得数据库连接对象。
3、通过Connection实例化PreparedStatement对象,编写sql语句命令操作数据库。
4、数据库属于资源操作,...
分类:
编程语言 时间:
2014-07-01 14:24:02
阅读次数:
232
现在常用的开源数据库连接池主要有c3p0、dbcp、proxool三种,其中:
Spring 推荐使用dbcp;
Hibernate 推荐使用c3p0和proxool;
1、 DBCP:Apache
DBCP(DataBase connection pool)数据库连接池。是Apache上...
分类:
数据库 时间:
2014-07-01 10:42:59
阅读次数:
209
参考:RPi Serial Connection本文来自:http://www.raspberry-projects.com/pi/programming-in-c/uart-serial-port/using-the-uartUsing the UARTIf you are running Ras...
分类:
Web程序 时间:
2014-07-01 10:21:01
阅读次数:
982
题目
Given a binary tree, return the postorder traversal of its nodes' values.
For example:
Given binary tree {1,#,2,3},
1
2
/
3
return [3,2,1].
Note: Rec...
分类:
其他好文 时间:
2014-07-01 07:06:11
阅读次数:
214
public static final String DRIVER = "com.mysql.jdbc.Driver";
public static final String URL = "jdbc:mysql://localhost:3306/easyui";
public static final String USERNAME = "root";
public static final String PASSWORD = "root";
/**
* 获得Connection
*
*...
分类:
数据库 时间:
2014-06-29 22:20:55
阅读次数:
278