Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I delete an item from an array, and then resize the array to the smaller size? Likewise, how can I increase the capacity if I need to add another item?

share|improve this question
is 'array' the required data-structure for your use case? Seems like you're using the wrong hammer – Ryan Fernandes Feb 2 '11 at 6:53
possible duplicate of How do I remove objects from an Array in java? – McDowell May 9 '11 at 10:18

7 Answers

The size of an Java array is fixed when you allocate it, and cannot be changed.

If you want to "grow" or "shrink" an existing array, you have to allocate a new array of the appropriate size and copy the array elements; e.g. using System.arraycopy(...) or Arrays.copyOf(...). (A copy loop works as well, though it looks a bit clunky ... IMO.) There are also alternatives in the form of 3rd-party libraries, but you may want to consider whether it is worth adding an extra library dependency for the sake of a method that you can implement yourself with 5-10 lines of code.


Often a better alternative is to use a List class instead of an array. This will take care of (at least) growing the backing storage. And there are operations that take care of inserting and deleting elements anywhere in the list.

For instance, the ArrayList class uses an array as backing, and automatically grows the array as required. It does not automatically reduce the size of the backing array, but you can tell it to do this using the trimToSize() method; e.g.

ArrayList l = ...
l.removeAt(21);
l = l.trimToSize();  // Only do this if you really have to.
share|improve this answer

You can't resize the array, per se, but you can create a new array and efficiently copy the elements from the old array to the new array using some utility function like this:

public static int[] removeElement(int[] original, int element){
    int[] n = new int[original.length - 1];
    System.arraycopy(original, 0, n, 0, element );
    System.arraycopy(original, element+1, n, element, original.length - element-1);
    return n;
}

A better approach, however, would be to use an ArrayList (or similar List structure) to store your data and then use its methods to remove elements as needed.

share|improve this answer
There is a bug in this code, which will cause it to always throw a NPE. I have edited answer with fix. – Joel Aug 15 '12 at 9:49

Arrays are fixed in size, you cannot resize them after creating them. You can remove an existing item by setting it to null:

objects[4] = null;

But you won't be able to delete that entire slot off the array and reduce its size by 1.

If you need a dynamically-sized array, you can use an ArrayList. With it, you can add() and remove() objects, and it will grow and shrink as needed.

share|improve this answer
So can I create a new array without the item that I want to remove? – Joe Feb 2 '11 at 2:32
@Joe: That's also a possible option; take a look at the other answers. – BoltClock Feb 2 '11 at 2:33
object[] newarray = new object[oldarray.Length-1];

for(int x=0; x < array.Length; x++)
{
  if(!(array[x] == value_of_array_to_delete))
  // if(!(x == array_index_to_delete))
   {
     newarray[x] = oldarray[x];
   }
}

There is no way to downsize an array after it is created, but you can copy the contents to another array of a lesser size.

share|improve this answer
What if I just want to ignore the last byte of an array of 640 bytes... – Amit Aug 21 '12 at 11:30
Then your instantiation would be object[] new array = new object[oldarray.Length-2]; the for loop takes care of the increments. – Mike Aug 21 '12 at 13:48
I means.. Do we need to create a new Array even if we just want to ignore one byte.. Can't we shrink the Array ? – Amit Aug 22 '12 at 9:32
No, you need to declare a new array and copy it's contents, if you want to shrink the array. – Mike Aug 22 '12 at 17:53

without using the System.arraycopy method you can delete an element from an array with the following

    int i = 0;
    int x = 0;
    while(i < oldArray.length){
        if(oldArray[i] == 3)i++;

        intArray[x] = oldArray[i];
        i++;
        x++;
    }

where 3 is the value you want to remove.

share|improve this answer

Using ArrayUtils.removeElement(Object[],Object) from org.apache.commons.lang is by far the easiest way to do this.

int[] numbers = {1,2,3,4,5,6,7};
//removing number 1
numbers =(int[])ArrayUtils.removeElement(numbers, 1);
share|improve this answer
This does not really resize the array. It creates a new one. But there is no other way, because the size of arrays cannot be changed. – MrSmith42 Jan 23 at 16:17

I have created this function, or class. Im kinda new but my friend needed this also so I created this:

public String[] name(int index, String[] z ){
    if(index > z.length){
        return z;
    } else {
        String[] returnThis = new String[z.length - 1];
        int newIndex = 0;
        for(int i = 0; i < z.length; i++){
            if(i != index){
                returnThis[newIndex] = z[i];
                newIndex++;
            }
        }
        return returnThis; 
    }
}

Since its pretty revelant, I thought I would post it here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.