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

I have a following test file :

Jon Smith 1980-01-01
Matt Walker 1990-05-12

What is the best way to parse through each line of this file, creating object with (name, surname, birthdate) ? Of course this is just a sample, the real file has many records.

share|improve this question
What have you been taught? Normally in school at least for me it was the scanner class. This will help to determine whats best for you. – Matt Oct 24 '10 at 15:47
I was planning to use scanner, but was more interested if StringTokenizer or StreamTokenizer should be used. – mastodon Oct 24 '10 at 16:02
1  
you could use the tokenizer too. Basically scan the line, then use tokenizer with a space delimiter. StringTokenizer st = new StringTokenizer("this is a test"); while (st.hasMoreTokens()) { System.out.println(st.nextToken()); } – Matt Oct 24 '10 at 16:44

5 Answers

up vote 1 down vote accepted
 import java.io.*;
 class Record
{
   String first;
   String last;
   String date;

  public Record(String first, String last, String date){
       this.first = first;
       this.last = last;
       this.date = date;
  }

  public static void main(String args[]){
   try{
    FileInputStream fstream = new FileInputStream("textfile.txt");
          DataInputStream in = new DataInputStream(fstream);
          BufferedReader br = new BufferedReader(new InputStreamReader(in));
          String strLine;
          while ((strLine = br.readLine()) != null)   {
   String[] tokens = str.split(" ");
   Record record = new Record(tokens[0],tokens[1],tokens[2]);//process record , etc

   }
   in.close();
   }catch (Exception e){
     System.err.println("Error: " + e.getMessage());
   }
 }
}
share|improve this answer
i'll update this code in a minute to include the creation of objects. – Orbit Oct 24 '10 at 15:44
2  
@Brandon -The question clearly has a 'homework' tag...I don't think you are making @mastodon's life any better by giving away the full solution. – johnbk Oct 24 '10 at 15:48
eep, apologies for giving away the answer. – Orbit Oct 24 '10 at 15:53
Although I'm going to use the solution with Scanner what I was planning previously, I choose your answer as it's most thorough. – mastodon Oct 24 '10 at 16:01
1  
Odd, my answer kind of explains everything without showing any code (which I feel is probably the best reply for a homework question). Ah well, as long as you learn something along the way :-) – Lee Jarvis Oct 24 '10 at 16:46
show 1 more comment
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;

public class ScannerReadFile {
    public static void main(String[] args) {
        //
        // Create an instance of File for data.txt file.
        //
        File file = new File("tsetfile.txt");

        try {
            //
            // Create a new Scanner object which will read the data from the 
            // file passed in. To check if there are more line to read from it
            // we check by calling the scanner.hasNextLine() method. We then
            // read line one by one till all line is read.
            //
            Scanner scanner = new Scanner(file);
            while (scanner.hasNextLine()) {
                String line = scanner.nextLine();
                System.out.println(line);
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }

    }
}

This:

            while (scanner.hasNextLine()) {
                String line = scanner.nextLine();

Could also be changed to

        while (scanner.hasNext()) {
            String line = scanner.next();

Which will read whitespace.

You could do

Scanner scanner = new Scanner(file).useDelimiter(",");

To do a custom delimiter

At the time of the post, now you have three different ways to do this. Here you just need to parse the data you need. You could read the the line, then split or read one by one and everything 3 would a new line or a new person.

share|improve this answer

Look at BufferedReader class. It has readLine method. Then you may want to split each line with space separators to construct get each individual field.

share|improve this answer

Use a FileReader for reading characters from a file, use a BufferedReader for buffering these characters so you can read them as lines. Then you have a choice.. Personally I'd use String.split() to split on the whitespace giving you a nice String Array, you could also tokenize this string.

Of course you'd have to think about what would happen if someone has a middle name and such.

share|improve this answer

At first glance, I would suggest the StringTokenizer would be your friend here, but having some experience doing this for real, in business applications, what you probably cannot guarantee is that the Surname is a single name (i.e. someone with a double barrelled surname, not hyphenated would cause you problems.

If you can guarantee the integrity of the data then, you code would be

BufferedReader read = new BufferedReader(new FileReader("yourfile.txt"));
String line = null;
while( (line = read.readLine()) != null) {
   StringTokenizer tokens = new StringTokenizer(line);
   String firstname = tokens.nextToken();
   ...etc etc
}

If you cannot guarantee the integrity of your data, then you would need to find the first space, and choose all characters before that as the last name, find the last space and all characters after that as the DOB, and everything inbetween is the surname.

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.