Package org.jumpmind.symmetric.csv

Examples of org.jumpmind.symmetric.csv.CsvReader


World world;

  public Vector<String> NameVector = new Vector<String>();

  public NameVector(String filename, World world) throws IOException {
    CsvReader reader = new CsvReader(new FileReader(filename), '\t');
   
    while (reader.readRecord()) {
      String[] thisRow = reader.getValues();
      for (int i = 0; i < thisRow.length; i++) {;
        addName(thisRow[i]);
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.jumpmind.symmetric.csv.CsvReader

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.