Here you can find the source of capitalizeFirst(String str)
public static String capitalizeFirst(String str)
//package com.java2s; //License from project: Apache License public class Main { public static String capitalizeFirst(String str) { if (str.isEmpty()) { return str; }/*ww w .j a v a 2 s .c o m*/ char firstCh = str.charAt(0); char newFirstCh = Character.toUpperCase(firstCh); if (firstCh == newFirstCh) { return str; } return newFirstCh + str.substring(1); } }