Here you can find the source of startsWith(String str, String prefix)
protected static boolean startsWith(String str, String prefix)
//package com.java2s; public class Main { protected static boolean startsWith(String str, String prefix) { return str != null && str.startsWith(prefix); }/*from w w w . j a va2 s .co m*/ }