检查文件是否同时执行

时间:2012-10-19 21:12:29

标签: java multithreading

我需要独立完成2项任务。

第一项任务

每分钟一次,它应检查特定文件夹中是否有任何文件。如果有,它应该将文件的名称添加到队列中。

这可以按如下方式完成:

import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit;


public class schedulerExample extends Thread{

    public void checkFile()
    {
        System.out.println("checking whether file exist in folder");

    }

    public void getFiles()
    {
        System.out.println("getting the file names");
    }

    public void enqueueFiles()
    {
        System.out.println("add files to queue");
    }
    public static void main(String[] args) {

    final schedulerExample obj = new schedulerExample();
    ScheduledExecutorService executor = new ScheduledThreadPoolExecutor(1);
    executor.scheduleAtFixedRate(new Runnable() {

        @Override
        public void run() {

            obj.checkFile();
            obj.getFiles();
            obj.enqueueFiles();

        }
    }, 0, 1, TimeUnit.MINUTES);


    }

}

第二项任务

如果队列为空,请休眠一分钟,或者逐个处理队列中的文件。

public class processModel extends Thread{

    public static void getQueueSize(int size)
    {
        System.out.println("getting queue size");

    }
    public void dequeue()
    {

        // dequeue the queue
        System.out.println("dequeue");

    }

    public void processFile()
    {
        // process the file
        System.out.println("process file");
    }

    public static void main(String[] args) {
        final boolean flag = true;
        final int size = 9;
        final processModel obj = new processModel();
        Thread t1 = new Thread(){
            public void run()
            {
                while(flag)
                {
                obj.dequeue();
                obj.processFile();
                getQueueSize(size);
                    if(size == 0)
                    {
                        try
                        {
                        Thread.sleep(60000);
                        }
                        catch(InterruptedException e)
                        {

                        }
                    }
                }

            }

        };

        t1.start();

    }

}

现在我需要同时在一个类中执行这两个操作。这可能吗?

一个线程应该每分钟获取一次文件。另一个线程应该逐个执行文件..如果没有文件,它等待一分钟再次检查。在第二种方法中,我使用了一个无限循环 - 而不是那样,有没有一种方法可以逐个执行?

2 个答案:

答案 0 :(得分:3)

您可能需要考虑将Callable与java ExecutorService一起使用。这可以用来轻松分解任务并允许它们同时运行。除此之外,您可以获得一个Future,它可以让您随时检查结果(如果没有,则推迟)。

有一本关于java和并发的好书叫做“实践中的并发”。

除此之外,Java 7还具有允许目录上的文件侦听器的新功能。这可能允许您抽象这个“检查和循环”功能。

答案 1 :(得分:1)

从队列对象获取文件时以及向其添加文件时对队列对象进行同步。

在读取的线程中,如果队列为空,则调用wait() 在检查新文件的线程中,在将新文件添加到队列后调用notify()

通常这样做。


您还应该阻止将正在处理的文件添加到队列中。