Here you can find the source of capitalize(String str)
public static String capitalize(String str)
//package com.java2s; public class Main { public static String capitalize(String str) { int strLen; if (str == null || (strLen = str.length()) == 0) { return str; }// w w w. jav a2 s. c om return new StringBuilder(strLen).append(Character.toTitleCase(str.charAt(0))).append(str.substring(1)) .toString(); } }