Java 1.5 过滤器 JTable
我想过滤 JTable 中的一些行,但 google 找到的所有内容都是针对 java 1.6 的。 我想使用 java 1.5 来执行此操作,因为我无法升级?
I would like to filter some rows in a JTable but all the stuff google found me is for java 1.6. I would like to do this using java 1.5 since i can not upgrade?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还没有使用过它们(我很幸运能够使用 1.6),但你可以尝试 Glazed Lists。 好像1.5也能用。
I haven't used them (I'm lucky enough to be using 1.6) but you could try Glazed Lists. It seems to work with 1.5.
您应该能够使用 SwingX 库来完成此操作:
例如,
这里有一篇关于此的文章:
http://www.javalobby.org/java/forums/t18819.html
您可以使用 FilterPipeline 将各种过滤器链接在一起,并且有一堆可以使用的内置过滤器(ShufflerSorter、PatternFilter)。
它应该可以为您提供所需的内容,而无需诉诸 Java 6 升级。
You should be able to use the SwingX library to accomplish this:
e.g.
There's an article here on this:
http://www.javalobby.org/java/forums/t18819.html
You can chain various filters together using the FilterPipeline and there's a bunch of built in filters that can be used (ShufflerSorter, PatternFilter).
It should provide you with what you need without resorting to a Java 6 upgrade.