0
を管理:私は必要なものJTableの行ソーター - フィルタIは、行フィルタを持っていますが、私は...値以外のすべてをロードする必要が</p> <p>例
col1 | col2
-----------
1 | N
2 | Y
3 | O
:
col1 | col2
-----------
1 | N
3 | O
私の持っているもの:
RowFilter<TableModel, Object> firstFiler = null;
List<RowFilter<TableModel, Object>> filters = new
ArrayList<RowFilter<TableModel, Object>>();
RowFilter<TableModel, Object> compoundRowFilter = null;
try {
firstFiler = RowFilter.regexFilter("(?i)" + text, 1);
filters.add(firstFiler);
compoundRowFilter = RowFilter.andFilter(filters);
} catch (java.util.regex.PatternSyntaxException e) {
return;
}
sorter.setRowFilter(compoundRowFilter);