hbase java_Java 操作Hbase 完整例子

package com.yue;

import org.apache.hadoop.conf.Configuration;

import org.apache.hadoop.hbase.*;

import org.apache.hadoop.hbase.client.*;

import java.io.IOException;

public class Test {

public static Configuration configuration; // 管理Hbase的配置信息

public static Connection connection; // 管理Hbase连接

public static Admin admin; // 管理Hbase数据库的信息

public static void main(String[] args) throws IOException {

// TODO Auto-generated method stub

System.out.println("shit");

init();

String colF[] ={"score"};

createTable("stu41",colF);

insertData("stu41","zhangsan","score","English","69");

insertData("stu41","lisi","score","English","69");

getData("stu41","zhangsan","score","English");

close();

}

public static void init(){

configuration = HBaseConfiguration.create();

configuration.set("hbase.zookeeper.quorum", "localhost");

try{

connection = ConnectionFactory.createConnection(configuration);

admin = connection.getAdmin();

}catch(IOException e){

e.printStackTrace();

}

}

public static void createTable(String myTableName,String[] colFamily) throws IOException{

TableName tableName = TableName.valueOf(myTableName);

if(admin.tableExists(tableName)){

System.out.println("Table exists");

}else {

HTableDescriptor hTableDescriptor = new HTableDescriptor(tableName);

for(String str:colFamily){

HColumnDescriptor hColumnDescriptor = new HColumnDescriptor(str);

hTableDescriptor.addFamily(hColumnDescriptor);

}

admin.createTable(hTableDescriptor);

}

}

// 添加单元格数据

/*

* @param tableName 表名

* @param rowKey 行键

* @param colFamily 列族

* @param col 列限定符

* @param val 数据

* @thorws Exception

* */

public static void insertData(String tableName,String rowKey,String colFamily,String col,String val) throws IOException{

Table table = connection.getTable(TableName.valueOf(tableName));

Put put = new Put(rowKey.getBytes());

put.addColumn(colFamily.getBytes(),col.getBytes(),val.getBytes());

table.put(put);

table.close();

}

//浏览数据

/*

* @param tableName 表名

* @param rowKey 行

* @param colFamily 列族

* @param col 列限定符

* @throw IOException

* */

public static void getData(String tableName,String rowKey,String colFamily,String col) throws IOException{

Table table = connection.getTable(TableName.valueOf(tableName));

Get get = new Get(rowKey.getBytes());

get.addColumn(colFamily.getBytes(),col.getBytes());

Result result =table.get(get);

System.out.println(new String(result.getValue(colFamily.getBytes(),col==null?null:col.getBytes())));

table.close();

}

// 操作数据库之后,关闭连接

public static void close(){

try{

if(admin!=null){

admin.close(); // 退出用户

}

if(null != connection){

connection.close(); // 关闭连接

}

}catch (IOException e){

e.printStackTrace();

}

}

//删除表

public static void deleteTable(String tableName){

try {

TableName tablename = TableName.valueOf(tableName);

admin = connection.getAdmin();

admin.disableTable(tablename);

admin.deleteTable(tablename);

} catch (IOException e) {

e.printStackTrace();

}

}

//End

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值