博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
13 hbase连接
阅读量:4931 次
发布时间:2019-06-11

本文共 970 字,大约阅读时间需要 3 分钟。

Configuration conf=new Configuration();        String zookeeper="";        String clientport="2181";        String tableName="pbtest";        String rowkey="22977609";        conf.set(HBASE_ZOOKEEPER_QUORUM, zookeeper);        conf.set(HBASE_ZOOKEEPER_CLINETPORT, clientport);        conf= HBaseConfiguration.create(conf);        Table table=null;        try {            Connection connection = ConnectionFactory.createConnection(conf);            table=connection.getTable(TableName.valueOf(tableName));        } catch (IOException e) {            e.printStackTrace();        }        Get get=new Get(Bytes.toBytes(rowkey));        Result result= null;        try {            result = table.get(get);        } catch (IOException e) {            e.printStackTrace();        }        Cell cell = result.getColumnLatestCell(Bytes.toBytes("cf"), Bytes.toBytes("data"));        byte[] value = CellUtil.cloneValue(cell);

 

转载于:https://www.cnblogs.com/yangh2016/p/6121769.html

你可能感兴趣的文章
【转】简谈基于FPGA的千兆以太网
查看>>
10周机电大作业设计
查看>>
Nginx事件管理之ngx_event_core_module模块
查看>>
mysql修改表、字段、库的字符集(转)
查看>>
多项式三种方法比较
查看>>
程序员过关斩将--你的业务是可变的吗(福利你领了吗)
查看>>
菜鸟入门【ASP.NET Core】11:应用Jwtbearer Authentication、生成jwt token
查看>>
ODP操作procedure
查看>>
关于ie6,7body overflow:hidden失效的问题....
查看>>
【BZOJ】【3524】【POI2014】Couriers
查看>>
Android 通知栏Notification的整合 全面学习 (一个DEMO让你完全了解它)
查看>>
Spark学习笔记——手写数字识别
查看>>
python使用progressbar显示进度条
查看>>
一步一步学Silverlight 2系列(12):数据与通信之WebClient
查看>>
19 存储过程
查看>>
“冷面杀手”王励勤赢了
查看>>
Ubuntu下自动挂载Windows分区的方法
查看>>
页面自动刷新的几种方式
查看>>
WebIM(5)----将WebIM嵌入到页面中
查看>>
Datagridview列绑定数据
查看>>