hbase-从bytes.add获取值

0pizxfdo  于 2021-06-04  发布在  Hadoop
关注(0)|答案(1)|浏览(311)

结合java使用hbase
如果我们有

Bytes[] a = Bytes.add(Bytes.toBytes(10), Bytes.toBytes(20));

有没有办法把个人号码拿回来?

pvabu6sv

pvabu6sv1#

byte[] lower = Bytes.toBytes(10);
byte[] upper = Bytes.toBytes(20);

byte[] b = Bytes.add(lower,upper);
//get back        
int lowNum = Bytes.toInt(Arrays.copyOfRange(b, 0, lower.length));
int highNum = Bytes.toInt(Arrays.copyOfRange(b, lower.length, b.length));

相关问题