java reading from csv file and storing its information into ArrayList<class>
问题 I'm a java newbie and I need a some help so here is my main method: RegistrationMethods dmv = new RegistrationMethods(); ArrayList<CarOwner> ItState = new ArrayList<CarOwner>(); dmv.processTextToArrayList(ItState); and I have a class called CarOwner and it has getters and setters for firstName, lastName, license, month, year instance variables. And this is my method header for processTextToArrayList method: public void processTextToArrayList(ArrayList<CarOwner> inList) throws IOException this