实验环境: 操作系统 :Oracle Linux Server release 5.7 64
bit 数据库版本:Oracle Database 10g Release 10.2.0.4.0 - 64bit Production 案例说明:
为了测试、验证备份的有效性,需要将服务器A上的数据库的备份...
分类:
其他好文 时间:
2014-05-19 22:00:16
阅读次数:
484
spring框架jar包1、下载spring源包spring地址:http://www.springsource.org/download我下的是spring-framework-3.1.0.RELEASE-with-docs.zip下载依赖包:spring-framework-3.0.5.RELE...
分类:
编程语言 时间:
2014-05-19 20:20:20
阅读次数:
394
Jquery中绑定事件有三种方法:以click事件为例(1)target.click(function(){});(2)target.bind("click",function(){});(3)target.live("click",function(){});第一种方法很好理解,其实就和普通JS的...
分类:
Web程序 时间:
2014-05-19 09:36:17
阅读次数:
310
Question 1:Given an array of integers, find two
numbers such that they add up to a specific target number.The function twoSum
should return indices of...
分类:
其他好文 时间:
2014-05-19 09:35:41
阅读次数:
321
一、更改jdk默认编码为UTF-8,保证启动的JVM不会出现中文乱码问题
1、在编译的时候,如果我们没有用 -encoding
参数指定我们的JAVA源程序的编码格式,则javac.exe首先获得我们操作系统默认采用的编码格式。JDK首先获得操作系统的file.encoding参数(它保存的就是操....
分类:
系统相关 时间:
2014-05-19 08:38:25
阅读次数:
439
前序:最近产品要release,一直忙着测试,没有时间学习ant了,今天终于没什么事了赶紧写点东西。这个启动tomcat是好些天之前写的了。在这里跟大家分享一下。build.xml
停止tomcat --> 启动tomcat --> ...
分类:
其他好文 时间:
2014-05-19 07:39:26
阅读次数:
389
题目:查找元素target插入一个数组中的位置。代码:public int
searchInsert(int[] A, int target) { int len = A.length; int i; for(i = 0 ; i
< len ; i++){ ...
分类:
其他好文 时间:
2014-05-18 20:28:13
阅读次数:
299
#include #include int main(/*int argc, char const
*argv[]*/){ void * target; time_t now = time(NULL); if(now & 1) target =
&&odd; else target = &&e...
分类:
其他好文 时间:
2014-05-18 20:27:53
阅读次数:
306
运行 javac Server.java 编译java文件执行 java Server
运行程序在ie中输入 http://localhost:9999/ 打开模拟的服务程序import java.net.*;import
java.io.*;public class Server { pub...
分类:
编程语言 时间:
2014-05-17 19:18:18
阅读次数:
334
maven
编译部署src/main/java下的资源文件maven默认会把src/main/resources下的所有配置文件以及src/main/java下的所有java文件打包或发布到target\classes下面,但是现实我们可能会在src/main/java下面也放置一些配置文件如hib...
分类:
编程语言 时间:
2014-05-17 18:02:49
阅读次数:
284