zipInputStream.getNextEntry();
final BufferedReader in = new BufferedReader(new InputStreamReader(zipInputStream));
final CsvBeanReader csvb = new CsvBeanReader(in, CsvPreference.STANDARD_PREFERENCE);
// List<IpToCountry> list = new ArrayList<IpToCountry>();
IpToCountry tmp = null;
int id = 1;
while (null != (tmp = csvb.read(IpToCountry.class, this.stringNameMapping))) {
tmp.setId(id++);
getIpToCountryDAO().saveOrUpdate(tmp);
}
// close the stream !!!