Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Truncate a list to a given number of elements

People also ask

How do you truncate a list in Java?

List<String> subItems = new ArrayList<String>(items. subList(0, 2)); If the list is shorter than the specified size, expect an out of bounds exception. Choose the minimum value of the desired size and the current size of the list as the ending index.

How do you trim an ArrayList in Java?

The Java ArrayList trimToSize() method trims (sets) the capacity of the arraylist equal to the number of elements in the arraylist. The syntax of the trimToSize() method is: arraylist. trimToSize();


Use List.subList:

import java.util.*;
import static java.lang.Math.min;

public class T {
  public static void main( String args[] ) {
    List<String> items = Arrays.asList("1");
    List<String> subItems = items.subList(0, min(items.size(), 2));

    // Output: [1]
    System.out.println( subItems );

    items = Arrays.asList("1", "2", "3");
    subItems = items.subList(0, min(items.size(), 2));

    // Output: [1, 2]
    System.out.println( subItems );
  }
}

You should bear in mind that subList returns a view of the items, so if you want the rest of the list to be eligible for garbage collection, you should copy the items you want to a new List:

List<String> subItems = new ArrayList<String>(items.subList(0, 2));

If the list is shorter than the specified size, expect an out of bounds exception. Choose the minimum value of the desired size and the current size of the list as the ending index.

Lastly, note that the second argument should be one more than the last desired index.


list.subList(100, list.size()).clear();

or:

list.subList(0, 100);

subList, as suggested in the other answers, is the first that comes to mind. I would also suggest a stream approach.

source.stream().limit(10).collect(Collectors.toList()); // truncate to first 10 elements
source.stream().skip(2).limit(5).collect(Collectors.toList()); // discards the first 2 elements and takes the next 5