Here you can find the source of capitalize(final String s)
public static String capitalize(final String s)
//package com.java2s; //License from project: Open Source License public class Main { /** Capitalizes the first letter of the specified string and makes the rest lowercase. */ public static String capitalize(final String s) { if (s.length() == 0) { return s; }//from w ww . ja va 2s.c om return s.substring(0, 1).toUpperCase() + s.substring(1).toLowerCase(); } }