I have an arraylist of class Room which is held in class Hostel, i would like to write this arraylist to a text file. What is the most efficient method of doing so?

Hostel Class

public class Hostel
{
    private ArrayList < Room > rooms;
}

Room Class

abstract class Room
{

public Room(int newRoomNo, boolean newRoomEnSuite, int newRoomNights, String        newRoomBooker)
    {
        roomNo = newRoomNo;
        roomEnSuite = newRoomEnSuite;
        roomBooking = "Booked";
        roomNights = newRoomNights;
        roomBooker = newRoomBooker;
    }
}
link|improve this question

Create a method that writes one room to a file passed as a parameter. Then open a file, use a for loop to iterate through the arraylist and write each Room instance, and close the file. When in doubt, use google. – 9000 Dec 19 '11 at 19:05
feedback

4 Answers

up vote 4 down vote accepted

A one-liner from commons-io

FileUtils.writeLines(new File(path), list);
link|improve this answer
I think this is only using the toString() method of the lists elements. – Stephan Dec 19 '11 at 19:49
@Stephan it isn't. There's a method that takes File and Collection – Bozho Dec 19 '11 at 20:27
And how are the elements of the collections written? – Stephan Dec 19 '11 at 20:42
the collection is iterated. See IOUtils.writeLines – Bozho Dec 19 '11 at 20:50
feedback
import java.io.*;
import java.util.ArrayList;

public class Hostel {
    public void writeRooms(ArrayList<Room> rooms){
        for (int i = 0; i < rooms.size(); i++) {
            write(rooms[i]);
        }
    }
    void write(Room room) throws IOException  {
        Writer out = new OutputStreamWriter(new FileOutputStream("FileName"));
        try {
          out.write(room.roomNo + ";" + roomEnSuite + ";" + roomBooking + ";" + roomNights + ";" + roomBooker + "/n");
        }
        finally {
          out.close();
        }
    }
}

This should be a solution without using external API.

link|improve this answer
feedback

You can use ObjectOutPutStream to save all ArrayList

and can be read (reconstituted) using an ObjectInputStream. Persistent storage of objects can be accomplished by using a file for the stream. I

link|improve this answer
+1 Correct answer – Stephan Dec 19 '11 at 19:50
Yes, but you should make Room class implement Serializable interface. – viktor Dec 19 '11 at 20:18
feedback

Try something along the lines of:

abstract class Room
{
    public Room(int newRoomNo, boolean newRoomEnSuite, int newRoomNights, String newRoomBooker)
    {
        // ..
    }

    /* Each implementation of Room must be able to convert itself 
       into a line of text */
    @Override
    public abstract String toString();
}

class RoomWriter
{
    public void write(List<Room> rooms, File file) throws IOException
    {
        BufferedWriter writer = new BufferedWriter(new FileWriter(file));
        try
        {
            for (Room room : rooms)
            {
                writer.write(room.toString());
                writer.write("\n");
            }
        }
        finally
        {
            writer.close();
        }
    }

}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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