【发布时间】:2015-10-28 14:56:01
【问题描述】:
我制作了一个 Java 实用程序,可以在 XML 中搜索 x 个精美的 zip 文件 (twx)。
最初这是一个命令行实用程序,没有线程。
当我将它移动到使用 JavaFX 时,我遇到了冻结问题,然后将所有搜索移动到一个 Task 对象中进行修复。
我需要一些方法来跟踪进度,所以我实现了 Progress 属性和 ProgressBar 来跟踪。
效果很好,但既然我已经在使用多线程,为什么不为每个 Zip 搜索创建一个线程。不幸的是,这并没有那么好。
为了跟踪,我创建了一个任务数组,然后创建了一个处理它们的主任务。我使用处理所有更新的进度和总计属性。
这里是代码
public class TextSearch {
final private SimpleDoubleProperty progress = new SimpleDoubleProperty();
final private SimpleDoubleProperty total = new SimpleDoubleProperty();
/**
*
* Kicks off a search. Creates a Task/Thread for each twx search.
* @return A task object that maintains all of the twx searches.
*
* @throws ZipException If the zip file is unreadable.
* @throws IOException If the file is unreadable.
* @throws JDOMException If the xml in the files are unreadable.
* @throws InvalidTWXFile If the twx is corrupt.
*/
public Task<?> executeSearch() throws ZipException, IOException, JDOMException, InvalidTWXFile {
//Loop through all registered twx files.
Iterator<TWExport> rit = registered.iterator();
Integer t = 0;
//Create a task for each search
final ArrayList<Task<?>> tasks = new ArrayList<Task<?>>();
while(rit.hasNext())
{
final TWExport twx = rit.next();
//Only run search if user selects to search it.
if(twx.getSearchEnabled())
{
Task<Void> task = new Task<Void>() {
@Override public Void call() {
informUser("Searching " + twx);
SearchResults proj = new SearchResults(twx);
searchResult.add(proj);
searchTwx(proj,twx);
twx.setResultCount(proj.getTotalCount());
informUser("Finished Searching " + twx);
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
if (isCancelled()) {
updateMessage("Cancelled");
}
}
return null;
}
};
tasks.add(task);
t += twx.getObjects().size();
} else
{
informUser("Skipping " + twx);
}
}
total.setValue(t);
//Create the main thread that will hold all individual searches.
Task<Void> main = new Task<Void>() {
@Override
protected Void call() throws Exception {
startTime = new Date();
Iterator<Task<?>> it = tasks.iterator();
while(it.hasNext())
{
Thread t = new Thread(it.next());
t.start();
}
//Sometimes I get a hung thread in this loop
while(!progress.getValue().equals(total.getValue()))
{
updateProgress(progress.getValue(), total.getValue());
Thread.sleep(5000);
}
setEndTime(new Date());
return null;
}
};
new Thread(main).start();
return main;
}
/**
* Search through a twx file and add results to the project search results
* @param proj The parent SearchResults
* @param twx The TWExport to search
*/
private void searchTwx(SearchResults proj, TWExport twx) {
Iterator<TWObject> it = twx.getObjects().iterator();
//Iterate through the files and get the result
while(it.hasNext())
{
TWObject object = it.next();
progress.setValue(progress.getValue() + 1);
if(searchArtifacts.matcher(object.getName()).find())
{
SearchResults result = object.searchContents(searchStr);
if(result != null)
{
proj.add(result);
}
}
}
}
使用主线程似乎很笨拙,有时在一次搜索 10 多个 zip 文件时会挂在该循环中。
有没有更好的方法来做到这一点,任务数量未知?有没有类似 JavaFX ExecutorService 的东西,我可以在其中添加一堆任务、启动它并监控 progressProperty?
【问题讨论】:
标签: java multithreading javafx