RandomMath
RandomMath

Reputation: 691

Reading File into Array - Java

I am practicing java, and looking at exercises online:

However, I am stuck at the point in which I need to

Read the file again, and initialise the elements of the array

Task

  • Write class Members representing a list of members as an array
  • Constructor should take String argument (file name)
  • Use scanner to read lines and create array big enough to hold the file
  • Read the file again and initialise elements of the array

Current Code

import java.io.*;
import java.util.*;

class Members {

    MemberElement[] members;

    public Members(String fileName) throws IOException {
        File myFile = new File(fileName);
        Scanner scan = new Scanner(myFile);

        int numOfLines = 0;
        while(scan.hasNextLine()) {
            scan.nextLine();
            numOfLines++;
        }
        scan.close();
        scan = new Scanner(myFile);

        members = new MemberElement[numOfLines];   
}

MemberElement Class:

class MemberElement {

    private String name;
    private int number;
    private int birthDate;

    public MemberElement(String name, int number, int birthDate) {
        this.name = name;
        this.number = number;
        this.birthDate = birthDate;
    }

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

    public int getNumber() {
        return this.number;
    }

    public int getBirth() {
        return this.birthDate;
    }

    public String toString() {
        return getName() + " " + getNumber() + " " + getBirth(); 
    }
}

Contents Of Text File:

Wendy Miller 7654 17-2-1960
Dolly Sheep 4129 15-5-1954
Dolly Sheep 5132 21-12-1981
Irma Retired Programmer 345 15-11-1946

Upvotes: 3

Views: 2932

Answers (4)

Rustam
Rustam

Reputation: 6515

Try this:

class Members {

    MemberElement[] members;

    public Members(String fileName) throws IOException {
        File myFile = new File(fileName);
        Scanner scan = new Scanner(myFile);

        int numOfLines = 0;
        while (scan.hasNextLine()) {
            scan.nextLine();
            numOfLines++;
        }
        System.out.println("Lines-->"+numOfLines);
        scan.close();

        members = new MemberElement[numOfLines];
        scan = new Scanner(myFile);
        numOfLines = 0;
        while (scan.hasNextLine()) {
            String data[]=scan.nextLine().split(",");
            members[numOfLines]=new MemberElement(data[0], data[1], data[2]);
            System.out.println(members[numOfLines]);
            numOfLines++;
        }
    }
}
public class Test2{
    public static void main(String[] args) throws IOException {

     new Members("e:/temp.txt");
    }
}

MemberElement.java

class MemberElement {

    private String name;
    private String number;
    private String birthDate;

    public MemberElement(String name, String number, String birthDate) {
        this.name = name;
        this.number = number;
        this.birthDate = birthDate;
    }

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

    public String getNumber() {
        return this.number;
    }

    public String getBirth() {
        return this.birthDate;
    }

    public String toString() {
        return getName() + " " + getNumber() + " " + getBirth(); 
    }
}

Output:

Lines-->4
Wendy Miller  7654  17-2-1960
Dolly Sheep  4129  15-5-1954
Dolly Sheep  5132  21-12-1981
Irma Retired Programmer  345  15-11-1946

Upvotes: 1

fxnn
fxnn

Reputation: 1137

It's basically the same like counting lines:

int numOfLines = 0;
while(scan.hasNextLine()) {
    scan.nextLine();
    numOfLines++;
}

However, we now need to actually access that next line. A quick look into the Scanner docs tells me, that nextLine returns exactly what we want.

int numOfLine = 0;
while(scan.hasNextLine()) {
    String line = scan.nextLine();
    members[numOfLine] = new MemberElement(line, numOfLine, /* birthDate */);
    numOfLine++;
}

Upvotes: 4

AlmasB
AlmasB

Reputation: 3407

It says initialise elements of the array. So that would be

int index = 0;
while (scan.hasNextLine()) {
    // I assume MemberElement c-tor uses the read data somehow
    // otherwise what's the point in reading the file
    members[index++] = new MemberElement(scan.nextLine());
}

scan.close();

Although the task itself does seem to be somewhat strange.

Upvotes: 2

Hussein Zawawi
Hussein Zawawi

Reputation: 2937

Use a list instead and convert it back to array if you want:

public Members(String fileName) throws IOException {
    File myFile = new File(fileName);
    Scanner scan = new Scanner(myFile);
    List<String> list =new ArrayList<String>();

    while(scan.hasNextLine()) {
        list.add(scan.nextLine());
    }
    scan.close();
    scan = new Scanner(myFile);

    members = list.toArray();   

Upvotes: 0

Related Questions