多线程和文件

时间:2015-11-11 05:43:02

标签: java multithreading concurrency

我希望通用实用程序类能够写入特定文件夹中的文件。如果我想让它并发(例如,如果一个图像以块的形式写入,它按顺序写入而不是随机写,因为它在不同的线程中),我是否可以使用一个File对象文件夹本身的路径,但没有特定的文件(让我们称之为文件夹),并调用以下内容?

    synchronized(folder){
        //Open the output stream to the specific file needed and handle it
    }

0 个答案:

没有答案