我正在试图弄清楚如何在Swing中创建一个虚拟列表框(或树或大纲) - 这将是一个列表框可以在数据库的大结果集中显示“视图”而不获取整个结果集的内容;所有它需要给我的是项目N1 - N2将很快需要显示,所以我可以获取它们,并询问项目N的内容。
我知道如何在Win32(ListView + LVS_OWNERDATA)和XUL(custom treeview)中执行此操作,我找到了SWT的内容,但没有找到Swing。
有什么建议吗?
更新:啊哈,我不明白在搜索引擎中要找什么,&教程似乎并没有把它称为“虚拟列表框”或使用这个想法。我找到了good tutorial我可以从中开始,其中一个Sun tutorials似乎还可以。
这是我的示例程序,它按照我期望的方式运行... 除了它似乎是列表框在我的AbstractListModel中查询所有行,而不仅仅是行可见。对于百万行虚拟表,这是不实际的。我怎样才能解决这个问题? (编辑:似乎setPrototypeCellValue修复了这个。但我不明白为什么......)
package com.example.test;
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.AbstractListModel;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JSpinner;
import javax.swing.SpinnerModel;
import javax.swing.SpinnerNumberModel;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
// based on:
// http://www.java2s.com/Tutorial/Java/0240__Swing/extendsAbstractListModel.htm
// http://www.java2s.com/Tutorial/Java/0240__Swing/SpinnerNumberModel.htm
// http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/SpinnerNumberModel.html
// http://www.java2s.com/Tutorial/Java/0240__Swing/ListeningforJSpinnerEventswithaChangeListener.htm
public class HanoiMoves extends JFrame {
public static void main(String[] args) {
HanoiMoves hm = new HanoiMoves();
}
static final int initialLevel = 6;
final private JList list1 = new JList();
final private HanoiData hdata = new HanoiData(initialLevel);
public HanoiMoves() {
this.setTitle("Solution to Towers of Hanoi");
this.getContentPane().setLayout(new BorderLayout());
this.setSize(new Dimension(400, 300));
list1.setModel(hdata);
SpinnerModel model1 = new SpinnerNumberModel(initialLevel,1,31,1);
final JSpinner spinner1 = new JSpinner(model1);
this.getContentPane().add(new JScrollPane(list1), BorderLayout.CENTER);
JLabel label1 = new JLabel("Number of disks:");
JPanel panel1 = new JPanel(new BorderLayout());
panel1.add(label1, BorderLayout.WEST);
panel1.add(spinner1, BorderLayout.CENTER);
this.getContentPane().add(panel1, BorderLayout.SOUTH);
ChangeListener listener = new ChangeListener() {
public void stateChanged(ChangeEvent e) {
Integer newLevel = (Integer)spinner1.getValue();
hdata.setLevel(newLevel);
}
};
spinner1.addChangeListener(listener);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);
}
}
class HanoiData extends AbstractListModel {
public HanoiData(int level) { this.level = level; }
private int level;
public int getLevel() { return level; }
public void setLevel(int level) {
int oldSize = getSize();
this.level = level;
int newSize = getSize();
if (newSize > oldSize)
fireIntervalAdded(this, oldSize+1, newSize);
else if (newSize < oldSize)
fireIntervalRemoved(this, newSize+1, oldSize);
}
public int getSize() { return (1 << level); }
// the ruler function (http://mathworld.wolfram.com/RulerFunction.html)
// = position of rightmost 1
// see bit-twiddling hacks page:
// http://www-graphics.stanford.edu/~seander/bithacks.html#ZerosOnRightMultLookup
public int rulerFunction(int i)
{
long r1 = (i & (-i)) & 0xffffffff;
r1 *= 0x077CB531;
return MultiplyDeBruijnBitPosition[(int)((r1 >> 27) & 0x1f)];
}
final private static int[] MultiplyDeBruijnBitPosition =
{
0, 1, 28, 2, 29, 14, 24, 3, 30, 22, 20, 15, 25, 17, 4, 8,
31, 27, 13, 23, 21, 19, 16, 7, 26, 12, 18, 6, 11, 5, 10, 9
};
public Object getElementAt(int index) {
int move = index+1;
if (move >= getSize())
return "Done!";
int disk = rulerFunction(move)+1;
int x = move >> (disk-1); // guaranteed to be an odd #
x = (x - 1) / 2;
int K = 1 << (disk&1); // alternate directions for even/odd # disks
x = x * K;
int post_before = (x % 3) + 1;
int post_after = ((x+K) % 3) + 1;
return String.format("%d. move disk %d from post %d to post %d",
move, disk, post_before, post_after);
}
}
更新
根据jfpoilpret的建议,我在getElementData()
函数中放了一个断点。
if ((index & 0x3ff) == 0)
{
System.out.println("getElementAt("+index+")");
}
我查看了有问题的线程的堆栈跟踪。这不是真的有用(在下面发布)。然而,从其他一些调整来看,看起来罪魁祸首是fireIntervalAdded()/ fireIntervalRemoved()以及getSize()结果的变化。 fireIntervalxxxx似乎能够解决Swing检查getSize()函数的问题,如果大小发生变化,它会立即重新获取所有行内容(或者至少将请求放入事件队列中)。
必须以某种方式告诉它不要那样做!但我不知道是什么。
com.example.test.HanoiMoves at localhost:3333
Thread [main] (Suspended (breakpoint at line 137 in HanoiData))
HanoiData.getElementAt(int) line: 137
BasicListUI.updateLayoutState() line: not available
BasicListUI.maybeUpdateLayoutState() line: not available
BasicListUI.getPreferredSize(JComponent) line: not available
JList(JComponent).getPreferredSize() line: not available
ScrollPaneLayout$UIResource(ScrollPaneLayout).layoutContainer(Container) line: not available
JScrollPane(Container).layout() line: not available
JScrollPane(Container).doLayout() line: not available
JScrollPane(Container).validateTree() line: not available
JPanel(Container).validateTree() line: not available
JLayeredPane(Container).validateTree() line: not available
JRootPane(Container).validateTree() line: not available
HanoiMoves(Container).validateTree() line: not available
HanoiMoves(Container).validate() line: not available
HanoiMoves(Window).show() line: not available
HanoiMoves(Component).show(boolean) line: not available
HanoiMoves(Component).setVisible(boolean) line: not available
HanoiMoves(Window).setVisible(boolean) line: not available
HanoiMoves.<init>() line: 69
HanoiMoves.main(String[]) line: 37
Thread [AWT-Shutdown] (Running)
Daemon Thread [AWT-Windows] (Running)
Thread [AWT-EventQueue-0] (Running)
更新:我尝试使用Advanced JList Programming article中的一些FastRenderer.java代码并修复了它。但事实证明它根本不是渲染器!一行代码解决了我的问题,我不明白为什么:
list1.setPrototypeCellValue(list1.getModel().getElementAt(0));
答案 0 :(得分:3)
问题在于,即使使用智能预取,也无法保证在需要时预取所有可见行。
我将草拟一个我在项目中使用过一次并且运行得非常好的解决方案。
我的解决方案是让ListModel返回一个缺省行的存根,告诉用户该项正在加载。 (您可以使用自定义呈现存根的自定义ListCellRenderer
来增强视觉体验。另外,使ListModel
入队请求获取丢失的行。 ListModel
必须生成一个线程,该线程读取队列并获取丢失的行。获取一行后,将fireContentsChanges
调用到获取的行。您还可以在listmodel中使用Executor:
private Map<Integer,Object> cache = new HashMap<Integer,Object>();
private Executor executor = new ThreadPoolExecutor(...);
...
public Object getElementAt(final int index) {
if(cache.containsKey(index)) return cache.get(index);
executor.execute(new Runnable() {
Object row = fetchRowByIndex(index);
cache.put(index, row);
fireContentsChanged(this, index, index);
}
}
您可以通过以下方式改进此草图解决方案:
ListModel
会忘记那些远离最后获取的行。答案 1 :(得分:1)
看看jgoodies bindings。我不确定他们会做你想做的事(我没有用过它们......我只知道这个项目)。
答案 2 :(得分:1)
扩展AbstractListModel,您可以将其传递给JList构造函数。
在您的实现中,使您的列表大小尽可能大(使用getSize返回的值)。如果列表中该项目的数据不可用,则返回一个空行(通过getElementAt)。当数据可用时,请为更新的行调用fireContentsChanged。
答案 3 :(得分:1)
我怀疑访问整个模型的原因可能与列表大小计算有关。
您可以尝试在模型getElementAt()方法中添加一些断点。我建议你这样做:
if (index == 100)
{
System.out.println("Something");//Put the breakpoint on this line
}
100常数是值&lt; getSize()但大于初始可见行数(这样你就不会有所有可见行的中断)。 当您输入此断点时,请查看模型的调用位置,这可能会给您一些提示。您可以在此处发布堆栈跟踪,以便我们进一步帮助您。
答案 4 :(得分:0)
啊哈:渲染是问题,但我真的不明白为什么。
我使用了文章Advanced JList Programming中FastRenderer.java程序中提到的TextCellRenderer。但我真的不明白为什么这样做以及关于这样做的警告......:/