Here you can find the source of capitaliseFirstLetter(String text)
public static String capitaliseFirstLetter(String text)
//package com.java2s; //License from project: Open Source License public class Main { public static String capitaliseFirstLetter(String text) { if (text == null || text.length() <= 0) return text; return text.substring(0, 1).toUpperCase() + text.substring(1); }/*from w w w . j av a 2 s . co m*/ }