在HBase中格式化输出



我想在应用单列值过滤器后从HBase中获取所选列族的行。

在我的表" projectdata"中,我有

的专栏一家
    name|story|type|keyword
  aritra| kl  |ac  |happy
   nill |jk   |bc  |sad
   bob  |pk   |dd  |happy

。当他们的"关键字"很高兴时,我想获得"名称"的列表。这是我的代码。

public class ByCategory {
    public static void main(String [] args) throws Exception{
        Configuration conf = HBaseConfiguration.create();
        HTable table = new HTable(conf, "Projectdata");
        SingleColumnValueFilter filter_by_happycategory = new SingleColumnValueFilter(
                Bytes.toBytes("keyword" ),
                Bytes.toBytes(""),
                CompareOp.EQUAL,
                Bytes.toBytes("happy")
                );
        FilterList filterListk =new FilterList();
        filterListk.addFilter(filter_by_happycategory);
        Scan scanh = new Scan();
        scanh.addFamily(Bytes.toBytes("name"));
        scanh.addFamily(Bytes.toBytes("keyword"));
        scanh.setFilter(filterListk);

        ResultScanner scannerh = table.getScanner(scanh);
        String key = new String("~");
        String keyFlag = new String("~");
        System.out.println("Scanning table... ");
            for(Result resulth: scannerh){
                //System.out.println("getRow:"+Bytes.toString(resulth.getRow()));
                 key = "~";
                for(KeyValue kv:resulth.raw())
                {
                    if(key.compareTo(keyFlag)==0){
                        key=Bytes.toString(kv.getRow());
                        System.out.print("Key: "+key);
                    }
                    System.out.print(Bytes.toString(kv.getValue()));
                }
                System.out.println("");
            }
            scannerh.close();
            System.out.println("complete");  
            table.close();
        }
    }

我正在像这样的输出

Key: 102happybob
Key: 109happyaritra

,但我只想得到名字。我正在尝试获得

 Key: 102bob
 Key: 109aritra

在HBase中有可能吗?我的错实际在哪里?

使用

for(Result resulth: scannerh){
        System.out.println("Key: "+Bytes.toString(resulth.getRow())+Bytes.toString(resulth.getValue(Bytes.toBytes("name"),Bytes.toBytes(""))));
    }

您将获得所需的输出。resulth.getRow()为您提供rowkey,而.getValue(columnfamily,column)为您提供了特定列的值,该列是""

最新更新