Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been assigned the task of creating a NIO Persistent Array in my "Advanced" Java course. This question is not so much 'how' to do this, but 'what' is implied by "NIO Persistent". This is a new concept to me; so far I understand that basically this just means that instead of dynamically storing information in the typical array in code, you store the array's information on-disk in the form of bytes in pre-determined sized blocks. What I'm confused about is how you get from the information you're trying to store to bytes, and then how do you write those bytes to a file via Java's NIO?

TL;DR - Can someone explain a Java NIO Persistent Array in a nutshell? How should I go about constructing one from the ground up?

Thanks for any comments you have in advance!

EDIT: Here is the assignment description, word for word:

Objective

Become familiar with Java's NIO API.

Requirements

Use Java's NIO to create a PersistentArray class. The class should support the following methods:

static void create(String fileName, int bufferSize) - creates an empty persistent array

static void delete(String fileName) - deletes the persistent array

PersistentArray open(String fileName) - opens the file associated with the persistent array and prepares the persistent array for gets and puts.

void put(int bufferID, Buffer buffer) - Stores the buffer at the bufferID's location (note that the buffer size must be the same as the size used when creating the array).

Buffer get(int bufferID) - given the buffer ID, retrieve the buffer previously stored at the location associated with bufferID.

int getNextID() - return one beyond the maximum ID ever used for storing a buffer .

void close() - close the file associated with the persistent array

Also, create a JUnit test showing that all methods behave as expected.

Review your work with the instructor.

share|improve this question
2  
You might like to work on your accept rate. – Peter Lawrey Oct 23 '11 at 6:40
Sorry, but I don't accept answers when my question isn't answered. – Chris V. Oct 23 '11 at 22:46
the policy is to typically accept the best answer or add your own answer that you used to solve the problem and accept that. To just abandon a bunch of questions is considered bad form. Also says more to your ability to ask a question than others to answer it, I suggest have a little personal retrospective as you go through your old questions and see if you might be able to phrase your questions better in the future. We aren't here to answer your questions, we're ALL here to leave a body of knowledge behind us. – Bill K Oct 24 '11 at 2:05

2 Answers

up vote 1 down vote accepted

What:
There is no such thing like "NIO persistent array". The instructor wants you to get acquainted with the NIO API (since it's better and faster than old IO API).

Now in context to the assignment, you need to implement this class which adheres to the spec specified by the instructor. No fancy stuff, just implement a class which "persists" data (an array in your case) to a file using nio.

This writeup might help you. File I/O: old I/O or NIO. Which is better?

TL;DR: There is no special meaning to NIO persistence. Just create an array which is not in memory, but also persists its content using NIO.

How:
Now, it can be implemented in many ways, Peter's answer is pretty good where is has recommended to use a RandomAccessFile.

share|improve this answer
Thanks for the insight, I'll read up on NIO a bit :] – Chris V. Oct 24 '11 at 0:05
Start to code I would say, you will understand more. Code is design. – zengr Oct 24 '11 at 0:29

I can only assume he/she is talking about memory mapped files. Use can use a RandomAccessFile to create a MappedByteBuffer which you can access randomly like an array. Changes you make to the ByteBuffer are persisted.

share|improve this answer
I edited my original submission to include the exact wording of the assignment. – Chris V. Oct 23 '11 at 23:16
So you want to wrap a MappedByteBuffer. ;) – Peter Lawrey Oct 24 '11 at 5:31

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.