You cannot resize arrays in java. If you really need to go with arrays you need to create a new array of the desired size and copy your data over. Instead I would use a list, try and lookup ArrayList...