您应该在Result上使用getColumnCells来获取所有版本(取决于您在Get中设置的MAX_VERSION_COUNT个)。getValue返回最新值。
样例代码:
List<Cell> values = result.getColumnCells(Bytes.toBytes(family), Bytes.toBytes(qualifier)); for ( Cell cell : values ) { System.out.println( Bytes.toString( CellUtil.clonevalue( cell ) ) ); }


