结合java使用hbase如果我们有
Bytes[] a = Bytes.add(Bytes.toBytes(10), Bytes.toBytes(20));
有没有办法把个人号码拿回来?
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));
1条答案
按热度按时间pvabu6sv1#