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

I am writing an application that reads in a large number of basic user details in the following format; once read in it then allows the user to search for a user's details using their email:

NAME             ROLE          EMAIL
---------------------------------------------------
Joe Bloggs       Manager       jbm@company.com
John Smith       Consultant    jsc@company.com
Alan Wright      Tester        awt@company.com
...

The problem I am suffering is that I need to store a large number of details of all people that have worked at the company. The file containing these details will be written on a yearly basis simply for reporting purposes, but the program will need to be able to access these details quickly.

The way I aim to access these files is to have a program that asks the user for the name of the unique email of the member of staff and for the program to then return the name and the role from that line of the file. I've played around with text files, but am struggling with how I would handle multiple columns of data when it comes to searching this large file.

What is the best format to store such data in? A text file? XML? The size doesn't bother me, but I'd like to be able to search it as quickly as possible. The file will need to contain a lot of entries, probably over the 10K mark over time.


EDIT: I've decided to go with the XML serialisation method. I've managed to get the code for Encoding working perfectly, but the Decoding code below does not work.

XMLDecoder d = new XMLDecoder(
               new BufferedInputStream(new FileInputStream("data.xml")));
List<Employee> list = (List<Employee>) d.readObject();
d.close();
for(Employee x : list) {
    if(x.getEmail().equals(userInput)) {
        // do stuff
    }
}

When the program hits List<Employee> list = (List<Employee>) d.readObject(); an exception is thrown claiming that "Employee cannot be cast to java.util.List". I've added a bounty to this and anyone that can help me solve this problem once and for all will get lots of lovely points.

EDIT 2: I've looked a bit more into the problem and have come across Serialization as a potential answer. If anyone can look into this for me as I've no experience with Serialization or Deserialization I'd be very grateful. It can provide an Object with no problems whatsoever, but I really need to return it in the same format as it went in (List).

EDIT 3: Ugh, this problem is really starting to drive me crazy and to be honest I'm starting to think that it's an unsolvable problem. If possible, could someone take a look at the code and help provide a solution for me?

share|improve this question

5 Answers

Since I guess others will answer this question by advicing you to use an external database, I won't:

I suggest creating a Java Bean, i.e.

public class Employee {

    public String name;
    public String role;
    public String email;

    public Employee() {}

    public Employee(String name, String role, String email) {
        setName(name);
        setRole(role);
        setEmail(email);
    }

    public void setName(String name) {
        this.name = name;
    }
    public String getName() {
        return this.name;
    }

    // etc. for other fields

}

And use the java.beans.XMLDecoder and java.beans.XMLEncoder to serialize/deserialize an ArrayList<Employee>. (You can read more about them here: http://java.sun.com/j2se/1.4.2/docs/api/java/beans/XMLEncoder.html using an older API, because I don't know which version you use.)

You can then search this array using a foreach:

XMLDecoder d = new XMLDecoder(
               new BufferedInputStream(new FileInputStream("data.xml")));
List<Employee> list = (List<Employee>) d.readObject();
d.close();
for(Employee x : list) {
    if(x.getEmail().equals(userInput)) {
        // do stuff
    }
}

The advantage of using XML serialization over "binary" serialization, is that you can also add new fields to the Employee later, if you also provide default values for them. This makes the data flexible for future use.

More info: http://java.sun.com/products/jfc/tsc/articles/persistence4/

Update:

XMLEncoder/XMLDecoder is a better solution than a binary-serialization. I advice you to do the following.

Create a new wrapper class:

public class EmployeeList {

    private final ArrayList<Employee> list = new ArrayList<Employee>();

    public List<Employee> getList() {
        return this.list;
    }
    public setList(final List<Employee> list) {
        this.list.clear();
        this.list.addAll(list); // shallow copy
    }

    // add your search methods here, for example:
    public Employee getEmployee(String email) {
        ....
    }

}

Now you can use this EmployeeList as a wrapper. Using the following code, you perhaps can see what's wrong with the XMLDecoder, when it throws a casting exception.

XMLDecoder d = new XMLDecoder(
           new BufferedInputStream(new FileInputStream("data.xml")));
final Object o = d.readObject();
System.out.println(o.getClass());
if(o instanceof EmployeeList) {
    EmployeeList el = (EmployeeList) o;

    el.getEmployee(userInput); // TODO
}else{
    System.out.println("Wrong format.");
}

You'd have to serialize your EmployeeList too:

EmployeeList el = ...;
XMLEncoder e = new XMLEncoder(...);
e.writeObject(el);
share|improve this answer
I agree with Pindatjuh. For fast reads, better to deserialize it into memory and access there than read from disk. – Erik Hermansen Apr 16 '10 at 0:29
I've almost got this solution working. When Encoding to the XML file is there any way I can write objects to an existing XML file? Every time I run the method that writes using XMLEncoding it rewrites the entire file. – Mike B Apr 16 '10 at 15:29
You will have to open the original file, if it exists, load the List<Employee>, and then append your new Employees to this list: then serialize it back and store the file again. Performance for under 50K entries is not an issue. – Pindatjuh Apr 16 '10 at 17:45
I've edited the question to show that I cannot cast the Object to a List when decoding. – Mike B Apr 19 '10 at 14:27

How about a database? You can use either Derby or Hypersonic. You can create an embedded instance of them just for your own application use. I've used them in lots of applications where I have to manipulate large quantity of data. Hypersonic is very nice and fast. Derby is bundle with the JDK so its convenient database to use.

See this for Derby and this for Hypersonic.

share|improve this answer

Many approaches would work. If I wasn't going to use a database, I would store the data in a gzipped, tab-delimited file. To read the file I would use:

 BufferedReader sourceReader = new BufferedReader(new InputStreamReader(
     new GZIPInputStream(new FileInputStream(srcFile))), 4096);

 String line = null;
 while (null != (line = sourceReader.readLine()) {
     String [] colData = line.split("\t");  // alternately use java.util.Scanner 
     // Create maps for columns you want to search on.
 }
 // report results by querying map

To write to the file get a buffered writer like so:

   BufferedWriter destinationWriter = new BufferedWriter(new OutputStreamWriter(
       new GZIPOutputStream(new FileOutputStream(destination))));

   // do stuff
   destinationWriter.flush();
   destinationWriter.close();

Hope that helps....

share|improve this answer
up vote 0 down vote accepted

Okay, I've finally managed to solve the problem of handling the Objects once they've been decoded through ArrayList rather than through List<Employee>. I use XMLEncoder to encode an ArrayList into an XML file once split into its separate pieces, and then I use XMLDecoder to take out the Objects, cast them to Employee and then use them as needed.

share|improve this answer

Your criteria

The size doesn't bother me, but I'd like to be able to search it as quickly as possible. The file will need to contain a lot of entries, probably over the 10K mark over time

says that XML is not suitable.

You use XML and serialisation only when

  • you wish to be able to edit the file manually with a text editor
  • you need to pass the file as an argument stream for RPC or inter-system communication.

If you have no pressing need for either of the above requirements, I am not able to be convinced that XML should be used at all for persisting large amount of data.

What you need is a single file db, so that you could move the file around with your app.

I think a good solution is hsqldb http://hsqldb.org/.

What is the advantage you would gain over using hsqldb by using xml and serialization? I find sql/jdbc/jdo much more convenient and familiar.

Unless I have good reasons to struggle with using XML as a query-able persistence mechanism or that sql/jdbc/jdo is not my cup of tea or that I have an academic elegance to prove, then my lazy attitude towards completing my task as quick-and-dirty possible would be to use hsqldb. And btw, laziness is the virtue of a good programmer.

If you are thinking of serialization/deserialization from/into objects JDO is the perfect way to go. JDO is an interface to the database to allow you to write and retrieve data as objects.

http://en.wikipedia.org/wiki/Java_Data_Objects
http://www.informit.com/articles/article.aspx?p=212397.

However, if persisting objects is not your requirement, a simple jdbc connection would suffice:

Connection c = DriverManager.getConnection("jdbc:hsqldb:file:mydb", "SA", "");
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.