Here you can find the source of capitalizeFirstLetter(String str)
public static String capitalizeFirstLetter(String str)
//package com.java2s; //License from project: Open Source License public class Main { public static String capitalizeFirstLetter(String str) { if (str != null && str.length() == 1) { return String.valueOf(str.charAt(0)).toUpperCase(); } else if (str != null && str.length() > 1) { return String.valueOf(str.charAt(0)).toUpperCase() + str.substring(1);/* www .jav a2 s . c om*/ } else return str; } }