Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

With nio it is possible to map an existing file in memory. But is it possible to create it only in memory without file on the hard drive ?

I want to mimic the CreateFileMapping windows functions which allow you to write in memory.

Is there an equivalent system in Java ?

The goal is to write in memory in order for another program ( c ) to read it.

share|improve this question
3  
Why don't you just create a byte buffer and write to that? – Thomas Mar 22 '12 at 17:36
You can tell Windows to create a memory mapping of the pagefile rather than a named file. Is that what you're looking for? – Gabe Mar 22 '12 at 17:38
Are you talking about inter-process communication? – Diego Mar 22 '12 at 17:47
Indeed, the goal is to write in memory in order for another program ( c ) to read it. – Foobyto Mar 23 '12 at 10:37

4 Answers

up vote 3 down vote accepted

Have a look at the following. A file is created but this might be as close as your going to get.

MappedByteBuffer
MappedByteBuffer.load()
FileChannel
FileChannel.map()

Here is a snippet to try and get you started.

    filePipe = new File(tempDirectory, namedPipe.getName() + ".pipe");
    try {
        int pipeSize = 4096;
        randomAccessFile = new RandomAccessFile(filePipe, "rw");
        fileChannel = randomAccessFile.getChannel();
        mappedByteBuffer = fileChannel.map(FileChannel.MapMode.READ_WRITE, 0, pipeSize);
        mappedByteBuffer.load();
    } catch (Exception e) {
    ...
share|improve this answer
This work and indeed, everything is in RAM (i check with some utilities, no hdd i/o) But, do you know how to retrieve the mapped file with c code ? using window function ? – Foobyto Mar 23 '12 at 14:56
@Foobyto - No I don't. Worth adding a new question to get it answered. – Charles Mar 23 '12 at 16:57
Actually, after research, you can't write in RAM with java, you need to do it through the system api. This thing for exemple: msdn.microsoft.com/en-us/library/windows/desktop/aa366537 Java just let you to put a file in RAM in order to modify it faster, that's all. – Foobyto Apr 5 '12 at 14:37

A file exists on the disk, by definition. Your question embodies a contradiction in terms.

share|improve this answer

You can emulate Output/Input Stream and wrap it by BufferWriter, InputStreamReader, etc. Problem is that maximum size has to be known.

public class ByteBufferInputStream extends InputStream {

    private ByteBuffer buffer;

    public ByteBufferInputStream(ByteBuffer buffer) {
        this.buffer = buffer;
    }

    @Override
    public int read() throws IOException {
        if (buffer.position() >= buffer.limit()) {
            return -1;
        }
        return buffer.get();
    }

}

public class ByteBufferOutputStream extends OutputStream {

    private ByteBuffer buffer;

    public ByteBufferOutputStream(ByteBuffer buffer) {
        this.buffer = buffer;
    }

    @Override
    public void write(int b) throws IOException {
        try {
            buffer.put((byte) b);
        } catch (BufferOverflowException exp) {
            throw new IOException(exp);
        }
    }

}

ByteBuffer buffer = ByteBuffer.allocate(capacity)
OutputStream output = new ByteBufferOutputStream(buffer);
share|improve this answer
Yeah, it's memory but not shared :) You still have to shared object with your solution – Foobyto Mar 23 '12 at 14:58

Most libraries in Java deal with input and output streams as opposed to java.io.File objects.
Examples: image reading, XML, audio, zip

Where possible, when dealing with I/O, use streams.

This may not be what you want, however, if you need random access to the data.

When using memory mapped files, and you get a MappedByteBuffer from a FileChannel using FileChannel.map(), if you don't need a file just use a ByteBuffer instead, which exists totally in memory. Create one of these using ByteBuffer.allocate() or ByteBuffer.allocateDirect().

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.