Package org.metrapp.domain.files

Examples of org.metrapp.domain.files.Person


        try {

            br = new BufferedReader(new FileReader(csvFile));

            String[] entry = new String[6];
            Person p;
            while ((line = br.readLine()) != null) {
                entry = line.split(cvsSplitBy);
                p = new Person(entry[0], entry[1], entry[2]);
                addPerson(p);
//                p = new Person(entry[0], entry[1], entry[2], entry[3], entry[4], entry[5]);
//                addPerson(p);
            }
View Full Code Here

TOP

Related Classes of org.metrapp.domain.files.Person

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.