Package integrationTest.issue2564366

Source Code of integrationTest.issue2564366.DataReader

/**
*
*/
package integrationTest.issue2564366;

import au.com.bytecode.opencsv.CSVReader;

import java.io.FileReader;
import java.io.IOException;

/**
* @author scott
*
*/
public class DataReader
{
  private static final String ADDRESS_FILE="test/integrationTest/issue2564366/data.csv";

  /**
   * @param args
   * @throws IOException
   */
  public static void main(String[] args) throws IOException
  {
         
      CSVReader reader = new CSVReader(new FileReader(ADDRESS_FILE));
      String [] nextLine;
      while ((nextLine = reader.readNext()) != null) {
        System.out.println("CompanyName: [" + nextLine[0] + "]\nCompanyNumber: [" + nextLine[1] + "]\nClientName: [" + nextLine[2] + "]");
        System.out.println("ClientFirstName: [" + nextLine[3] + "]\nClientLastName: [" + nextLine[4] + "]\nClientId: [" + nextLine[5] + "]");
        System.out.println("ClientGroupId: [" + nextLine[6] + "]\nLogon: [" + nextLine[7] + "]\nLogonPW: [" + nextLine[8] + "]");
        System.out.println("PublishKey: [" + nextLine[9] + "]\nHiddenKey: [" + nextLine[10] + "]\nPublishEncryptMode: [" + nextLine[11] + "]");
        System.out.println("LanFolderId: [" + nextLine[12] + "]\nStaffId: [" + nextLine[13] + "]\n");
      }

  }

}
TOP

Related Classes of integrationTest.issue2564366.DataReader

TOP
Copyright © 2018 www.massapi.com. 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.