Can some body tell me the Java code to retrieve all column values associated with given rowkey
Row key should be the input
Lets say, if i have
row_key1 col1:value1 col2:valu1
col1:value1 col2:valu2
So when i pass row_key1 as parameters, the code should return like below
row_key1 {col1:value1 , col2:value2) {col2:valu1 col2:valu2}
