gpt4 book ai didi

java - HBase - 从 Bytes.add 获取值

转载 作者:行者123 更新时间:2023-12-01 13:50:27 27 4
gpt4 key购买 nike

通过 Java 使用 HBase

如果我们有

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));

关于java - HBase - 从 Bytes.add 获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20005203/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com