Java tutorial
/* * Copyright 2016 David Strawn. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package strawn.evariant.rainsorter.unused; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.io.Reader; import java.util.ArrayList; import java.util.List; import org.apache.commons.csv.CSVFormat; import org.apache.commons.csv.CSVRecord; /** * * */ public class WeatherStationLoader { public static List<WeatherStationRecord> loadRecordsFromDisk() throws FileNotFoundException, IOException { ArrayList<WeatherStationRecord> toReturn = new ArrayList(); Iterable<CSVRecord> records = getCSVRecords(); for (CSVRecord record : records) { int wban = Integer.parseInt(record.get("\"WBAN_ID\"").replace("\"", "")); String county = record.get("\"COUNTY\"").replace("\"", ""); String state = record.get("\"STATE_PROVINCE\"").replace("\"", ""); toReturn.add(new WeatherStationRecord(wban, county, state, 0d, 0d)); } return toReturn; } public static Iterable<CSVRecord> getCSVRecords() throws FileNotFoundException, IOException { Reader in = new FileReader(WeatherStationFileInfo.LOCATION); return CSVFormat.newFormat(WeatherStationFileInfo.DELIMITER).withHeader().parse(in); } }