hbase java 增删改查,HBase根本API(java)操作(增删改查)

本文详细介绍了如何使用HBase的Java API进行基本操作,包括创建表、删除表、添加数据、删除数据以及查询数据。通过示例代码展示了在学生信息管理场景中如何进行增删改查,是学习HBase操作的重要参考资料。
摘要由CSDN通过智能技术生成

HBase基本API(java)操作(增删改查)

//package hbaseExec2;

/*

* 创建一个students表,并进行相关操作

*/

import java.io.IOException;

import java.util.ArrayList;

import java.util.List;

import org.apache.hadoop.conf.Configuration;

import org.apache.hadoop.hbase.HBaseConfiguration;

import org.apache.hadoop.hbase.HColumnDescriptor;

import org.apache.hadoop.hbase.HTableDescriptor;

import org.apache.hadoop.hbase.KeyValue;

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

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

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

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

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

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

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

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

import org.apache.hadoop.hbase.util.Bytes;

public class HBaseJavaAPI {

// 声明静态配置

private static Configuration conf = null;

static {

conf = HBaseConfiguration.create();

conf.set("hbase.zookeeper.quorum", "192.168.6.91");

conf.set("hbase.zookeeper.property.clientPort", "2181");

}

//判断表是否存在

private static boolean isExist(String tableName) throws IOException {

HBaseAdmin hAdmin = new HBaseAdmin(conf);

return hAdmin.tableExists(tableName);

}

// 创建数据库表

public static void createTable(String tableName, String[] columnFamilys)

throws Exception {

// 新建一个数据库管理员

HBaseAdmin hAdmin = new HBaseAdmin(conf);

if (hAdmin.tableExists(tableName)) {

System.out.println("表 "+tableName+" 已存在!");

System.exit(0);

} else {

// 新建一个students表的描述

HTableDescriptor tableDesc = new HTableDescriptor(tableName);

// 在描述里添加列族

for (String columnFamily : columnFamilys) {

tableDesc.addFamily(new HColumnDescriptor(columnFamily));

}

// 根据配置好的描述建表

hAdmin.createTable(tableDesc);

System.out.println("创建表 "+tableName+" 成功!");

}

}

// 删除数据库表

public static void deleteTable(String tableName) throws Exception {

// 新建一个数据库管理员

HBaseAdmin hAdmin = new HBaseAdmin(conf);

if (hAdmin.tableExists(tableName)) {

// 关闭一个表

hAdmin.disableTable(tableName);

hAdmin.deleteTable(tableName);

System.out.println("删除表 "+tableName+" 成功!");

} else {

System.out.println("删除的表 "+tableName+" 不存在!");

System.exit(0);

}

}

// 添加一条数据

public static void addRow(String tableName, String row,

String columnFamily, String column, String value) throws Exception {

HTable table = new HTable(conf, tableName);

Put put = new Put(Bytes.toBytes(row));// 指定行

// 参数分别:列族、列、值

put.add(Bytes.toBytes(columnFamily), Bytes.toBytes(column),

Bytes.toBytes(value));

table.put(put);

}

// 删除一条(行)数据

public static void delRow(String tableName, String row) throws Exception {

HTable table = new HTable(conf, tableName);

Delete del = new Delete(Bytes.toBytes(row));

table.delete(del);

}

// 删除多条数据

public static void delMultiRows(String tableName, String[] rows)

throws Exception {

HTable table = new HTable(conf, tableName);

List delList = new ArrayList();

for (String row : rows) {

Delete del = new Delete(Bytes.toBytes(row));

delList.add(del);

}

table.delete(delList);

}

// 获取一条数据

public static void getRow(String tableName, String row) throws Exception {

HTable table = new HTable(conf, tableName);

Get get = new Get(Bytes.toBytes(row));

Result result = table.get(get);

// 输出结果,raw方法返回所有keyvalue数组

for (KeyValue rowKV : result.raw()) {

System.out.print("行名:" + new String(rowKV.getRow()) + " ");

System.out.print("时间戳:" + rowKV.getTimestamp() + " ");

System.out.print("列族名:" + new String(rowKV.getFamily()) + " ");

System.out.print("列名:" + new String(rowKV.getQualifier()) + " ");

System.out.println("值:" + new String(rowKV.getValue()));

}

}

// 获取所有数据

public static void getAllRows(String tableName) throws Exception {

HTable table = new HTable(conf, tableName);

Scan scan = new Scan();

ResultScanner results = table.getScanner(scan);

// 输出结果

for (Result result : results) {

for (KeyValue rowKV : result.raw()) {

System.out.print("行名:" + new String(rowKV.getRow()) + " ");

System.out.print("时间戳:" + rowKV.getTimestamp() + " ");

System.out.print("列族名:" + new String(rowKV.getFamily()) + " ");

System.out

.print("列名:" + new String(rowKV.getQualifier()) + " ");

System.out.println("值:" + new String(rowKV.getValue()));

}

}

}

// 主函数

public static void main(String[] args) {

try {

String tableName = "student";

// 第一步:创建数据库表:“student”

String[] columnFamilys = { "info", "course" };

HBaseJavaAPI.createTable(tableName, columnFamilys);

// 第二步:向数据表的添加数据

// 添加第一行数据

if (isExist(tableName)) {

HBaseJavaAPI.addRow(tableName, "zpc", "info", "age", "20");

HBaseJavaAPI.addRow(tableName, "zpc", "info", "sex", "boy");

HBaseJavaAPI.addRow(tableName, "zpc", "course", "china", "97");

HBaseJavaAPI.addRow(tableName, "zpc", "course", "math", "128");

HBaseJavaAPI.addRow(tableName, "zpc", "course", "english", "85");

// 添加第二行数据

HBaseJavaAPI.addRow(tableName, "henjun", "info", "age", "19");

HBaseJavaAPI.addRow(tableName, "henjun", "info", "sex", "boy");

HBaseJavaAPI.addRow(tableName, "henjun", "course", "china","90");

HBaseJavaAPI.addRow(tableName, "henjun", "course", "math","120");

HBaseJavaAPI.addRow(tableName, "henjun", "course", "english","90");

// 添加第三行数据

HBaseJavaAPI.addRow(tableName, "niaopeng", "info", "age", "18");

HBaseJavaAPI.addRow(tableName, "niaopeng", "info", "sex","girl");

HBaseJavaAPI.addRow(tableName, "niaopeng", "course", "china","100");

HBaseJavaAPI.addRow(tableName, "niaopeng", "course", "math","100");

HBaseJavaAPI.addRow(tableName, "niaopeng", "course", "english","99");

// 第三步:获取一条数据

System.out.println("**************获取一条(zpc)数据*************");

HBaseJavaAPI.getRow(tableName, "zpc");

// 第四步:获取所有数据

System.out.println("**************获取所有数据***************");

HBaseJavaAPI.getAllRows(tableName);

// 第五步:删除一条数据

System.out.println("************删除一条(zpc)数据************");

HBaseJavaAPI.delRow(tableName, "zpc");

HBaseJavaAPI.getAllRows(tableName);

// 第六步:删除多条数据

System.out.println("**************删除多条数据***************");

String rows[] = new String[] { "qingqing","xiaoxue" };

HBaseJavaAPI.delMultiRows(tableName, rows);

HBaseJavaAPI.getAllRows(tableName);

// 第七步:删除数据库

System.out.println("***************删除数据库表**************");

HBaseJavaAPI.deleteTable(tableName);

System.out.println("表"+tableName+"存在吗?"+isExist(tableName));

} else {

System.out.println(tableName + "此数据库表不存在!");

}

} catch (Exception e) {

e.printStackTrace();

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值