我知道已经有1000个线程可以解决这个问题,但是我已经尝试了所有内容,到目前为止还没有任何工作。我正在制作一个让我记录工作时间的小应用程序,所以我有一个字符串数组,其中包含我工作的所有小时数。我正在尝试更新数组,然后更新包含文本的JList,然后更新包含列表的JScrollPane。通过这种方式,我可以看到我将它们添加到侧面窗口后直接添加的小时数。
我已经在每个对象上尝试了revalidate()
和repaint()
,我已经在列表和滚动窗格上尝试了removeAll()
方法,似乎没有任何内容上班!我唯一能做的就是改变滚动条上边框的颜色!!我不知道为什么布局很容易更新,而不是窗格上的文字!
感谢您提供任何帮助!如果你想查看代码,我可以发布它,但它有点令人困惑,因为这只是整体的一小部分。
答案 0 :(得分:0)
我试着从中解脱出来。
当您尝试在Jlist中添加时间字符串时,则需要更新Jscroll窗格。
我将通过简单的
只需创建设计视图,如:
Jpanel1(card layout)
|
----> Jscrollpane1
|
------>Jpanel2
|
--------> Your Jlist will be here on dynamic runtime
您可以管理面板而不是Jlist。
但是我在这里用列表
public void getUpdateOldWorkTimeList()
{
List<String> workTimeList;
SwingWorker<Void, Void> mySwingWorker = new SwingWorker<Void, Void>() {
@Override
protected Void doInBackground() throws Exception {
workTimeList=getMyTimeList(); // here you put your work time array
Thread.sleep(100);
return null;
}
};
mySwingWorker.addPropertyChangeListener(new PropertyChangeListener() {
@Override
public void propertyChange(PropertyChangeEvent evt) {
if (evt.getPropertyName().equals("state")) {
if (evt.getNewValue() == SwingWorker.StateValue.DONE) {
jPanel2.removeAll();
jPanel2.revalidate();
jPanel2.repaint();
for (int i = 0; i < workTimeList.size(); i++) {
jPanel2.add(new ModelJList()).setVisible(true);
}
}
}
});
jPanel3.setLayout(new model.WrapLayout(FlowLayout.CENTER, 1, 0));
jPanel1.setBackground(new Color(0, 0, 0, 0));
jScrollPane1.setBackground(new Color(0, 0, 0, 0));
i
jScrollPane1.getVerticalScrollBar().setUnitIncrement(16);
int remainScroll=jScrollPane1.getVerticalScrollBar().getMaximum()- jScrollPane1.getVerticalScrollBar().getModel().getExtent();
jScrollPane1.getVerticalScrollBar().setValue(remainScroll);
jPanel1.removeAll();
jPanel1.add(jScrollPane1);
jPanel1.revalidate();
jPanel1.repaint();
}
必须提醒两件事:
列表模型类:您需要实现。(根据您的需要,你想要的样子)。
getMyTimeList()方法将数组转换为列表转换。
我已经为聊天应用程序实现了它,以便为发送方和接收方添加聊天。
一切顺利