Hbase 的ImmutableBytesWritable类型一般作为RowKey的类型;但也有时候会把值读出来;故有了转化为string一说.
ImmutableBytesWritable RowKey;
byte[] Temp = RowKey.get();
String str = Bytes.toString(Temp);
2023-02-22 11:53:24
Hbase 的ImmutableBytesWritable类型一般作为RowKey的类型;但也有时候会把值读出来;故有了转化为string一说.
ImmutableBytesWritable RowKey;
byte[] Temp = RowKey.get();
String str = Bytes.toString(Temp);