Filtering on JTable (JDK 1.6)

Hi,

I currently investigating using the new filtering features of JTable in 1.6 (TableRowSorter, RowFilter, etc). By this I came across the following questions:

* Is there a way to utilize multi-core CPUs when filtering? [Background: I have to deal with large data sets and therefore get significant performance improvements when filtering is applied in parallel on N subsets of the original data; N==number of cores)

* Is there a way to have incremental filtering; i.e. the filter operation is based on the previous filter result and does not start from scratch? [Background: again - performance; I want to provide 'filter while you type', which in most cases narrows/reduces the already filtered result list]

Thanks in advance,

Hans

[773 byte] By [HansNaltea] at [2007-11-26 17:01:19]
# 1
I was also wondering about this.I am using JDK 1.6, and I need to add filtering to my JTable-based application.What is the best way to do that? Does Java have a built-in structure for this, or will I need to do a lot of re-writing?Thanks,Matthew
CathInfoa at 2007-7-8 23:29:04 > top of Java-index,Desktop,Core GUI APIs...