gpt4 book ai didi

java - 写入大量小文件

转载 作者:行者123 更新时间:2023-12-01 13:17:43 39 4
gpt4 key购买 nike

我已经编写了用于将字符串写入文件的 Java 代码。字符串的大小几乎不会是 10KB。

下面是我编写的用于写入文件的代码。我编写了 3 种写入文件的方法。

void writeMethod(String string, int m)
{
if (m == 1)
{
FileChannel rwChannel = new RandomAccessFile(filePath, "rw").getChannel();
ByteBuffer wrBuf = rwChannel.map(FileChannel.MapMode.READ_WRITE, 0, string.length() * 1);
wrBuf.put(string.getBytes());
rwChannel.close();
}

if (m == 2)
{
FileOutputStream fileOutputStream = new FileOutputStream(filePath);
fileOutputStream.write(string.getBytes());
fileOutputStream.close();
}

if (m == 3)
{
FileWriter bw new FileWriter(filePath);
bw.write(string);
bw.close( );
}
}

**忽略错误

我从 3 个线程调用上述函数,每个线程一个方法。我不确定哪一个最快。如果不是这几种方式,哪一种好呢?我必须写入 17,000,000 个文件。

最佳答案

您可能还想尝试使用 java.nio.file 包作为测试目的的方法之一。

类似于:

Path path = Paths.get(filePath);
Files.write(path, string.getBytes(), null);

关于java - 写入大量小文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22334358/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com