我想创建一个扫描仪,它将为我提供2个前缀过滤器的结果
例如,我希望其键的所有行都以字符串“x”开头或以字符串“y”开头。
目前,我知道只能通过以下方式使用一个前缀来做到这一点:

scan.setRowPrefixFilter(prefixFiltet)

最佳答案

在这种情况下,您不能使用setRowPrefixFilter API,而必须使用更通用的setFilter API,例如:

scan.setFilter(
  new FilterList(
    FilterList.Operator.MUST_PASS_ONE,
    new PrefixFilter('xx'),
    new PrefixFilter('yy')
  )
);

07-24 15:49