String line = null;
String[] itemData = null;
while ((line = br.readLine()) != null) {
itemData = line.split(",");
ImageItem anItem = new ImageItem(itemData[0],itemData[1]);
anItem.save();
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {