You can use the Arrays.copyOf(..) methods to copy the contents of an existing array into a longer one. Basically they use System.arraycopy(..) to copy the array contents. In the end, it's just a...