Home Tutorial Java Collections Arraylist Java ArrayList sublist

 
 

Java ArrayList sublist
Posted on: October 23, 2009 at 12:00 AM
This section demonstrates how to use the Java Arraylist sublist

  • It returns the part of the ArrayList as List reference.
  • part is the given range between two indexes.


Java Arraylist Sublist Example
import java.util.*;

public class List1 {

public static void main(String[] args) {
String  ar[]={"india","pakistan","United Kingdom","Japan","Korea"};
ArrayList list=new ArrayList();
list.add(ar[0]);
list.add(ar[1]);
list.add(ar[2]);
list.add(ar[3]);
List list1=list.subList(1,3);

System.out.println(list+"   ");
System.out.println(list1+"   ");
}
}
Output
[india, pakistan, United Kingdom, Japan] 
[pakistan, United Kingdom]


Related Tags for Java ArrayList sublist:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.