hadoop入门4---java访问hbase

    xiaoxiao2025-04-02  7

    一、新建java工程

    1、导入hadoop hdfs的jar包

    2、导入hbase的所有jar包

    服务器路径/opt/modules/hbase-1.3.3/lib

    二、在服务器环境,使用hbase sheel建一张表

    表名称test1

    三、修改java程序运行机器所在的hosts文件

    我的是windows机器

    hosts中添加:

    192.168.175.128 hcb.com

    四、java读取hbase数据

    1、运行环境:

    操作系统centos 6.5

    jdk 1.7.0_80

    hadoop-2.5.0

    zookeeper-3.4.9伪集群,单机装三个实例

    hbase-1.3.3

    2、代码如下:

    package hbase; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hbase.HBaseConfiguration; import org.apache.hadoop.hbase.TableName; import org.apache.hadoop.hbase.client.Connection; import org.apache.hadoop.hbase.client.ConnectionFactory; import org.apache.hadoop.hbase.client.Get; import org.apache.hadoop.hbase.client.Result; import org.apache.hadoop.hbase.client.Table; public class HbaseTest { public static void main(String[] args) throws Exception { Configuration conf = HBaseConfiguration.create(); conf.set("hbase.zookeeper.quorum", "hcb.com:2181,hcb.com:2182,hcb.com:2183"); Connection cn = ConnectionFactory.createConnection(conf); String columnFamily= "cf"; String columnQualifier = "a"; String row = "row1"; TableName tableName = TableName.valueOf("test1"); Table table = cn.getTable(tableName); //Get 获取hbase表数据 table = cn.getTable(tableName); Get get = new Get(row.getBytes()); get.addColumn(columnFamily.getBytes(), columnQualifier.getBytes()); Result result = table.get(get); table.close(); System.out.println("Get result: " + new String(result.getValue(columnFamily.getBytes(), columnQualifier.getBytes()))); } }

    运行后,控制台打印如下日志信息:

    最新回复(0)