Here you can find the source of capitalize(String str)
public static String capitalize(String str)
//package com.java2s; //License from project: Open Source License public class Main { public static String capitalize(String str) { StringBuilder sb = new StringBuilder(str); String firstChar = sb.substring(0, 1); String upperFirstChar = firstChar.toUpperCase(); sb.delete(0, 1);/*from w w w. j a v a 2 s .c o m*/ sb.insert(0, upperFirstChar); return sb.toString(); } }