1

我正在为圣经编写一个文本搜索程序,我想使用线程来划分工作,以减少执行时间。我对 Java 编程比较熟悉,但对整个“线程”来说是全新的。基本上,该程序是拉出单独的圣经书卷,阅读文本,搜索单词,然后拉入下一本书。我想把它分开,以便 4-8 个线程在不同的书上同时工作。

有什么帮助吗?

public static void main(String args[]){

    String wordToSearch = "";
    String[] booksOfBible;
    int bookPosition = 0;
    ArrayList<String> finalList = new ArrayList<String>();

    getWord gW = new getWord();
    getBook gB = new getBook();
    checkBook cB = new checkBook();
    wordToSearch = gW.getWord(wordToSearch);
    booksOfBible = gB.getFileList();
    //System.out.println(wordToSearch);
    for(int i = 0; i < booksOfBible.length; i++){
        //System.out.println(booksOfBible[i]);//Test to see if books are in order
        String[] verses = gB.getNextBook(booksOfBible, bookPosition);
        //System.out.println(verses[0]);//Test to see if the books are being read properly
        cB.checkForWord(wordToSearch, verses, booksOfBible[i], finalList);
        bookPosition++;
    }
    for(int i = 0; i < finalList.size(); i++){
        System.out.println(finalList.get(i));
    }
    System.out.println("Word found " + finalList.size() + " times");
}
4

2 回答 2

0

您可以创建一个实现Runnable并在方法内实现文本搜索的类run()

然后通过使用 Runnable 对象作为构造函数参数创建一个新的 Thread 对象,这可以在新线程中运行

Thread t = new Thread(myRunnableObj);
t.start();

大概您还需要一个用于多个工作线程的数据结构来存储结果。确保使用线程安全/同步数据结构

然而,正如 Andrew Thompson 指出的那样,索引整本圣经可能会更快(例如:使用 MySql 全文搜索或其他库)

于 2013-04-15T00:25:38.200 回答
0

使用 Executors.newFixedThreadPool(nbNeededThreads) 会给你一个 ExecutorService 实例,这会让你提交并行任务。获得“未来”列表后,您可以监控它们并知道它们何时完成。

ExecutorService service = Executors.newFixedThreadPool(4);
ArrayList<Future> queue = new ArrayList<>();

for(int i = 0; i < booksOfBible.length; i++){
    Futur futurTask = service.submit(searchingTask);
    queue.add(futurTask);
}

// TODO Monitor queue to wait until all finished.
于 2013-04-15T00:29:57.580 回答