您的位置:首页 > 编程语言 > Java开发

Java:Swing篇,实现JList、JTextArea的自动滚动,实时刷新功能

2013-07-25 21:53 501 查看

1. 功能

作为swing的组件,JList与JTextArea是不可以单独实现滚动功能的,需要与JScrollPane结合才可以。

本代码中:

JList实现从其它数据源获取数据,然后依次对这些数据进行处理,处理过程中,在JList中选择当前处理的记录,依次向下移动。

JTextArea显示处理结果,因为有很多数据,内容满了的时候,需要滚动显示,就是一直显示最新的数据。

2. 实现代码

注意:下面的代码片段必须插入类的各相关段中,不是完整代码。

// 代码片段一,定义变量
private JList<String> jListAuthor;
private JScrollPane jScrollPaneAuthor;
private JScrollPane jScrollPaneInfo;
private JTextArea jTextAreaInfo;

// ......

// 代码片段二,生成对象并加入到界面中
{
{
jListAuthor = new JList<String>();
}
jScrollPaneAuthor = new JScrollPane();

//  For ensureIndexIsVisible method to work, the JList must be within a JViewport.
jScrollPaneAuthor.getViewport().setView(jListAuthor);
getContentPane().add(jScrollPaneAuthor);
jScrollPaneAuthor.setBounds(5, 5, 150, 403);
jScrollPaneAuthor.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
}

{
{
jTextAreaInfo = new JTextArea();
jTextAreaInfo.setText("");
jTextAreaInfo.setLineWrap(true); // 设置自动换行

// 设置断行不断字
// If set to true the lines will be wrapped at word boundaries (whitespace) if they are too long to fit within the allocated width.
// If set to false, the lines will be wrapped at character boundaries. By default this property is false.
jTextAreaInfo.setWrapStyleWord(true);
}
jScrollPaneInfo = new JScrollPane(jTextAreaInfo);
getContentPane().add(jScrollPaneInfo);
jScrollPaneInfo.setBounds(347, 0, 290, 403);
}

// ......

// 代码片段三,获取数据并填充左边的JList
TreeSet<String> ts = myService.getAuthors();
@SuppressWarnings({ "rawtypes", "unchecked" })
ListModel<String> jListModelAuthor = new DefaultComboBoxModel(
ts.toArray());
jListAuthor.setModel(jListModelAuthor);

// ......

// 代码片段四,对左边的JList进行遍历,处理,处理结果显示在右边JTextArea,并刷左右界面显示
ListModel<String> lm = jListAuthor.getModel();
int totalIndexs = lm.getSize();

// 起始值从当前选择的记录+1
for(int index=jListAuthor.getSelectedIndex()+1; index<totalIndexs; index++) {
String uname = (String)lm.getElementAt(index);

// ......
// ......

// 刷新左边JList窗口
jListAuthor.setSelectedIndex(index);
jListAuthor.ensureIndexIsVisible(index);

// 如果左边界面刷新出现问题,可以尝试加入此条语句
jScrollPaneAuthor.repaint();

List<String> tempResult = myService.processRecord(uname);
for(String str: tempResult) {
// 右边增加一行处理结果
jTextAreaInfo.append(str + "\n");

// 刷新右边JTextArea窗口
jTextAreaInfo.setCaretPosition(jTextAreaInfo.getDocument().getLength());

// ......
// ......
}
}


3. 效果

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: