Here's the DVD data that's in the dvdinfo.txt file: Donnie Darko/sci-fi/Gyllenhall, Jake Raiders of the Lost Ark/action/Ford, Harrison 2001/sci-fi/?? Caddy Shack/comedy/Murray, Bill Star Wars/sci-fi/Ford, Harrison Lost in Translation/comedy/Murray, Bill Patriot Games/action/Ford, Harrison
I didn't understand the following paragraph
we want to create an instance of DVDInfo for each line of data we read in from the dvdinfo.txt file. For each instance, we will parse the line of data (remember String.split()?) and populate DVDInfo's three instance variables. Finally, we want to put all of the DVDInfo instances into an ArrayList. Imagine that the populateList() method (below) does all of this. Here is a small piece of code from our application:
ArrayList<DVDInfo> dvdList = new ArrayList<DVDInfo>(); populateList(); // adds the file data to the ArrayList System.out.println(dvdList); You might
question:
how does populateList of method looks with necessary coding? can any one help with coding to understand populateList() method
Originally posted by samura babu: ...how does populateList of method looks with necessary coding? can any one help with coding to understand populateList() method...
Coding this method is excellent practice for the exam, because it uses a number of different features. Give it a try, and let us know where you're stuck.
The first step is to just read in each line of the text file. Can you write code for this?
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer sscce.org
Try writing the code yourself. If you get stuck, then please post what you have written so far and explain where you get stuck. [ June 29, 2007: Message edited by: Jesper Young ]