Как мне принять пользовательский ввод и успешно сохранить его в ArrayList? Тогда как мне заставить мою программу показывать мне все элементы в ArrayList? - PullRequest
1 голос
/ 01 мая 2019

Я хочу программу, которая хранит информацию о персонале в массиве. Я хотел бы попросить пользователя для ввода и сохранить каждый результат в массиве. Как мне это сделать? И как мне просмотреть все, что хранится в массиве после? Он не должен отражать код, который у меня есть, просто не могу понять, как у меня есть класс с сеттерами и геттерами, а затем создать нового основного класса, запрашивающего пользователя для ввода, и сохранить этот вход в массиве.

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class salesPersonMain {


    public static void main(String[] args) throws InputValidationException {

        Scanner input = new Scanner(System.in);
        //ask user for input and get input
        System.out.println("Enter id: ");
        int id = Integer.parseInt(input.nextLine());

        System.out.println("Enter first name:");
        String firstName = input.nextLine();

        System.out.println("Enter last name:");
        String lastName = input.nextLine();
        //save in array list
        List<salesPerson> sPerson = new ArrayList<salesPerson>();

        sPerson.add(new salesPerson(id, firstName, lastName));

    }
}

I have another class for the salesperson:

import java.util.ArrayList;

public class salesPerson<sPerson> {
    //create variables for sales person
    private int id;
    private String firstName;
    private String lastName;
 public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getFirstName() {
        return firstName;
    }

    public void setFirstName(String firstName) throws InputValidationException {
        if (firstName.matches("\\p{Upper}(\\p{Lower}){2,20}")) {
        } else {
            throw new InputValidationException();
        }
        {
            this.firstName = firstName;
        }
    }

    public String getLastName() {
        return lastName;
    }

    public void setLastName(String lastName)throws InputValidationException {
        if (lastName.matches("\\p{Upper}(\\p{Lower}){2,20}")) {
        } else {
            throw new InputValidationException();
        }
        {
            this.lastName = lastName;
        }
    }
 //creates array of salespeople
        private ArrayList<sPerson> salesPerson;

        public salesPerson() {
            salesPerson = new ArrayList<>();
        }
        //adds new salesperson to the array
        public void add(salesPerson sPerson) {
            salesPerson.add((sPerson) sPerson);
        }

1 Ответ

1 голос
/ 01 мая 2019

Вам понадобится цикл для многократного получения ввода:

public static void main(String[] args) throws InputValidationException {

    Scanner input = new Scanner(System.in);
    List<salesPerson> sPerson = new ArrayList<salesPerson>();

    // Loop forever
    // Need a way to break the loop. One option: have the user
    // input "q" for quit
    while (true) {

        //ask user for input and get input
        System.out.println("Enter id ('q' to quit): ");
        String temp = input.nextLine();
        if (temp.equals("q")) break;

        int id = Integer.parseInt(temp);
           // This should be in try/catch in case parseInt fails

        System.out.println("Enter first name:");
        String firstName = input.nextLine();

        System.out.println("Enter last name:");
        String lastName = input.nextLine();

        //save in array list
        sPerson.add(new salesPerson(id, firstName, lastName));
    }

    // Print the list
    sPerson.forEach(System.out::println);
}

Чтобы он распечатывался правильно, вам необходимо переопределить функцию toString в классе salesPerson:

public class salesPerson {
    // Other code here.....

    @Override
    public String toString() {
        return id + "," + firstName + " " + lastName;
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...