25 lines
723 B
Java
25 lines
723 B
Java
//: io/LargeMappedFiles.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
// Creating a very large file using mapping.
|
|
import java.nio.*;
|
|
import java.nio.channels.*;
|
|
import java.io.*;
|
|
import static com.mindviewinc.util.Print.*;
|
|
|
|
public class LargeMappedFiles {
|
|
static int length = 0x8000000; // 128 MB
|
|
public static void main(String[] args) throws Exception {
|
|
MappedByteBuffer out =
|
|
new RandomAccessFile("test.dat", "rw").getChannel()
|
|
.map(FileChannel.MapMode.READ_WRITE, 0, length);
|
|
for(int i = 0; i < length; i++)
|
|
out.put((byte)'x');
|
|
print("Finished writing");
|
|
for(int i = length/2; i < length/2 + 6; i++)
|
|
printnb((char)out.get(i));
|
|
}
|
|
} /* Output:
|
|
Finished writing
|
|
xxxxxx
|
|
*///:~
|