Here you can find the source of capitalizeFirst(String input)
public static String capitalizeFirst(String input)
//package com.java2s; //License from project: Apache License public class Main { public static String capitalizeFirst(String input) { if (input == null) return null; if (input.length() < 2) return input.toUpperCase(); return input.substring(0, 1).toUpperCase() + input.substring(1); }//w ww .jav a 2s.c o m }