摘要: 脚本如下:#!/bin/bashdir=$1dir1=""for file in `find $dir -type f`do dir2=${file%/*} name=${file%.*} name1=${name%.*} cd $dir2 gunzip $file if [... 阅读全文
posted @ 2015-11-25 15:04 iVictor 阅读(368) 评论(0) 推荐(0) 编辑
摘要: 一、JDBC(Java Database Connectivity) JDBC API为访问不同的数据库提供了一种统一的途径,象ODBC一样,JDBC对开发者屏蔽了一些细节问题,另外,JDBC对数据库的访问也具有平台无关性。二、JNDI(Java Name and Directory Inter... 阅读全文
posted @ 2015-11-25 12:41 iVictor 阅读(661) 评论(0) 推荐(1) 编辑
摘要: 1. 安装Ant Ant下载地址:http://ant.apache.org/bindownload.cgi 解压即可。 2. 下载Zookeeper源码包 https://github.com/apache/zookeeper 解压。 3. 利用Ant将Zookeeper源码编译成Eclipse工 阅读全文
posted @ 2015-11-25 12:17 iVictor 阅读(7296) 评论(0) 推荐(0) 编辑