Here you can find the source of capitalizedFirst(String str)
static public String capitalizedFirst(String str)
//package com.java2s; //License from project: Apache License public class Main { static public String capitalizedFirst(String str) { return str.substring(0, 1).toUpperCase() + str.substring(1); }/*from w w w. jav a 2 s .c om*/ }