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