Programming Tutorials

Comment on Tutorial - Vector example in Java By Grenfel



Comment Added by : Lerianne

Comment Added at : 2012-08-20 11:37:32

Comment on Tutorial : Vector example in Java By Grenfel
Hi Grenfel, would this be possible??

public void readFile() throws IOException{
cars = new CarRecordManager("hondaInventory.txt");
cars = new CarRecordManager("toyotaInventory.txt");
cars = new CarRecordManager("fordInventory.txt");

Vector<Object> carList = new Vector<Object>();
carList.add(cars);
}


View Tutorial