String.endsWith(String suffix) has the following syntax.
public boolean endsWith(String suffix)
In the following code shows how to use String.endsWith(String suffix) method.
public class Main { public static void main(String[] argv) { String str = "java2s.com"; String str2 = ".com"; System.out.println(str.endsWith(str2)); } }
The code above generates the following result.