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) { char[] chars = str.toCharArray(); if ((chars[0] >= 97 && chars[0] <= 122)) { chars[0] -= 32;/*from ww w . j a v a 2 s . c o m*/ } return String.valueOf(chars); } }