Hbase 的ImmutableBytesWritable类型一般作为RowKey的类型;但也有时候会把值读出来;故有了转化为string一说.
ImmutableBytesWritable RowKey; byte[] Temp = RowKey.get(); String str = Bytes.toString(Temp);
时间: 2024-10-12 20:00:39
Hbase 的ImmutableBytesWritable类型一般作为RowKey的类型;但也有时候会把值读出来;故有了转化为string一说.
ImmutableBytesWritable RowKey; byte[] Temp = RowKey.get(); String str = Bytes.toString(Temp);