0
使用HBase的與JavaHBase的 - 獲取值從Bytes.add
如果我們有
Bytes[] a = Bytes.add(Bytes.toBytes(10), Bytes.toBytes(20));
背部是否有獲得個人數字後面的方法嗎?
使用HBase的與JavaHBase的 - 獲取值從Bytes.add
如果我們有
Bytes[] a = Bytes.add(Bytes.toBytes(10), Bytes.toBytes(20));
背部是否有獲得個人數字後面的方法嗎?
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));