在我的应用程序上,我使用Files.write和org.jclouds.blobstore.domain.Blob.putBlob将字节数组写入4MB文件。两者都是并发的。第二个选项(jcloud)更快。
我想知道是否有更快的方法在文件中写入字节数组。如果我实现我的Files.write,那就更好了。
由于
答案 0 :(得分:0)
我查看了代码,并且(令人惊讶地)Files.write(Path, byte[], OpenOption ...)
使用8192字节的固定大小的缓冲区写入文件。 (Java 7和Java 8版本)
通过直接写入,您应该能够获得更好的性能; e.g。
byte[] bytes = ...
try (FileOutputStream fos = new FileOutputStream(...)) {
fos.write(bytes);
}
答案 1 :(得分:0)
我做了两个节目。首先使用Files.write,然后使用FileOutputStream创建1000个4MB的文件。 Files.write花了47秒,FileOutputStream花了53秒。
public class TestFileWrite {
public static void main(String[] args) {
try {
Path path = Paths.get("/home/felipe/teste.txt");
byte[] data = Files.readAllBytes(path);
SimpleDateFormat sdf = new SimpleDateFormat("YYYY-MM-DD HH:mm:ss");
System.out.println("TestFileWrite");
System.out.println("start: " + sdf.format(new Date()));
for (int i = 0; i < 1000; i++) {
Files.write(Paths.get("/home/felipe/Test/testFileWrite/file" + i + ".txt"), data);
}
System.out.println("end: " + sdf.format(new Date()));
} catch (IOException e) {
e.printStackTrace();
}
}
}
public class TestOutputStream {
public static void main(String[] args) {
Path path = Paths.get("/home/felipe/teste.txt");
byte[] data = null;
try {
data = Files.readAllBytes(path);
} catch (IOException e1) {
e1.printStackTrace();
}
SimpleDateFormat sdf = new SimpleDateFormat("YYYY-MM-DD HH:mm:ss");
System.out.println("TestOutputStream");
System.out.println("start: " + sdf.format(new Date()));
for (int i = 0; i < 1000; i++) {
try (OutputStream out = new FileOutputStream("/home/felipe/Test/testOutputStream/file" + i + ".txt")) {
out.write(data);
} catch (IOException e) {
e.printStackTrace();
}
// Files.write(Paths.get("), data);
}
System.out.println("end: " + sdf.format(new Date()));
}
}