【发布时间】:2013-05-20 12:57:19
【问题描述】:
Find() 方法是我在某些文件中搜索单词的方法的一个示例。
我从 Button_Start mouseclicked 事件中调用它。
这是我的代码:
public void Find (String word) {
List_files_directories (directory.getAbsolutePath(), files);
// print list
textpane.append(java.awt.Color.cyan, "Files in the choosen directory\n");
for (int j=0; j<files.size(); j++) {
if (files.get(j) != null)
textpane.append( java.awt.Color.PINK, "\n" + files.get(j) );
}
// from listarray to array
String[] array_files = new String[files.size()];
array_files = files.toArray(array_files);
int j;
for (j=0; j<array_files.length; j++) {
if (array_files[j] != null) {
if (array_files[j].contains("1")) {
function1 ( array_files[j], word );
}
else if ( array_files[j].contains("2") )
{
function2 ( array_files[j], word);
}
else if ( array_files[j].contains("3") )
{
function3 ( array_CARTELLE[j], word );
}
}
}
}
private void Button_StartMouseClicked(java.awt.event.MouseEvent evt) {
java.util.Timer().schedule(
new java.util.TimerTask() {
@Override
public void run() {
Find(word_from_textfield);
}
},
10
);
}
我需要添加两件事:
- 我想在
Find()方法运行时创建一个JProgressBar。
在这种情况下我需要采用一个标准来设置设置进度条 即基于文件列表的长度,我不知道。 - 我想在
Find()方法运行时设置WAIT_CURSOR,所以直到 进度条达到 100%。
我为我的请求 1) 尝试了这个:
public void doWork() {
Worker worker = new Worker();
worker.addPropertyChangeListener(new PropertyChangeListener() {
@Override
public void propertyChange(PropertyChangeEvent evt) {
if ("progress".equals(evt.getPropertyName())) {
ProgressBar1.setValue((Integer) evt.getNewValue());
}
}
});
worker.execute();
}
public class Worker extends SwingWorker<Object, Object> {
@Override
protected Object doInBackground() throws Exception {
for (int index = 1; index <= 1000; index++) {
int progress = Math.round(((float) index / 1000) * 100f);
setProgress(progress);
Thread.sleep(100);
}
return null;
}
}
在此我在Find() 方法的开头调用doWork()。
问题是我不知道如何同步我的方法持续时间和进度条长度。
此外,我不知道这是否是实现目标的最佳方式。
你能帮我根据我的代码/情况举一个例子吗?
谢谢
编辑:这是我的目标:我的方法在用户目录中的所有文件上打印JTextPane (textpane.append()),然后在每个文件中搜索一个单词。
我想在 JTextPane 上打印时使用 JProgressBar,并且它必须与进程持续时间同步。
如果可能,打印必须定时:
示例:
// Set Mouse cursor to Wait Status
// execute Find():
// the JProgressBar has to follow this progress of the print on JTextPane.
Files in the choosen directory:
file1
// print on JTextPane after 1 second
file2
// print on JTextPane after 1 second
file3
// print on JTextPane after 1 second
word found in file1!
// print on JTextPane after 1 second
word not found in file2
// print on JTextPane after 1 second
word found in file3
// print on JTextPane after 1 second
// restore mouse cursor to default
【问题讨论】:
-
请不要攻击,不要理解,可能代码与描述不同,请问目标是什么,可能是 JTextPane,可能是 Jlist 或 JTable,或者???,也许我错了,看错了某事
-
如需尽快获得更好的帮助,请发帖SSCCE。
标签: java swing sync swingworker jprogressbar