Here you can find the source of capitalizeFirstLetter(String str)
public static String capitalizeFirstLetter(String str)
//package com.java2s; //License from project: Apache License public class Main { public static String capitalizeFirstLetter(String str) { return (isEmpty(str) || !Character.isLetter(str.charAt(0))) ? str : Character.toUpperCase(str.charAt(0)) + str.substring(1); }//from ww w. ja v a2 s . c om public static boolean isEmpty(String str) { return (str == null || str.length() == 0); } }