Collection Sublist
# Java Example - List Sublist
[ Java Example](#)
The following example demonstrates how to use the `indexOfSubList()` and `lastIndexOfSubList()` methods of the `Collections` class to check if a sublist is present in a list and to find its position within the list:
## Main.java File
```java
import java.util.*;
public class Main {
public static void main(String[] args) {
List list = Arrays.asList("one Two three Four five six one three Four".split(""));
System.out.println("List :" + list);
List sublist = Arrays.asList("three Four".split(""));
System.out.println("Sublist :" + sublist);
System.out.println("indexOfSubList: " + Collections.indexOfSubList(list, sublist));
System.out.println("lastIndexOfSubList: " + Collections.lastIndexOfSubList(list, sublist));
}
}
The output of the above code is:
List :[one, Two, three, Four, five, six, one, three, Four]
Sublist :[three, Four]
indexOfSubList: 2
lastIndexOfSubList: 7
[ Java Example](#)
YouTip