previous | start | next

Removing an Element from an Array

System.arraycopy(data, i + 1, data, i, data.length - i - 1);
 

previous | start | next