- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在 JTable 的 regexFilter 构造函数中过滤第一列的数字? 0还是1?例如
ArrayList<RowFilter<Object,Object>> filters = new ArrayList<RowFilter<Object,Object>>(3);
TableRowSorter<TableModel> sorter = new TableRowSorter<TableModel>();
if(!fa.getCaseID().equals("*CASEID*")){
filters.add(RowFilter.regexFilter(fa.getCaseID(),0));//filter first column
}
if(!fa.getState().equals("*ANY*")){
filters.add(RowFilter.regexFilter(fa.getState(),4));//filter fifth column
}
RowFilter<Object,Object> filter = RowFilter.andFilter(filters);
sorter.setRowFilter(filter);
mTable.setRowSorter(sorter);
最佳答案
这有点棘手,因为 RowFilter.regexFilter() 中没有明确说明。文档,但您可以从以下代码片段推断:
Throws:
NullPointerException
- if regex is null
IllegalArgumentException
- if any of the indices are < 0
PatternSyntaxException
- if regex is not a valid regular expression.
甚至0
也是一个合法的参数。因此,第一列将为 0
。
关于java - JTable regexFilter right int 来过滤第一列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25164203/
我的日志中有以下几行要排除,所以我想使用 RegexFilter这样做: [INFO ] 2018-05-20 14:52:15.993 [qtp22844606-20] TimingFilter -
我将 RowFilter.regexFilter(...) 应用于我的表,但对 Integer 列的过滤无法正常工作。我发现在 RowFilter.RegexFilter.include() 中,要评
我目前正在使用以下内容来过滤我的 JTable RowFilter.regexFilter( Pattern.compile(textField.getText(),
protected void searchFilter(String s, int n) { RowFilter rf = null; try {
我需要在 JTable 的 regexFilter 构造函数中过滤第一列的数字? 0还是1?例如 ArrayList> filters = new ArrayList>(3); TableR
我是一名优秀的程序员,十分优秀!