Here you can find the source of capitalize(String s)
public static String capitalize(String s)
//package com.java2s; public class Main { /**//from w ww. j a va 2 s . c o m * Capitalize the first letter in the word */ public static String capitalize(String s) { if (s.length() > 1) return s.substring(0, 1).toUpperCase() + s.substring(1); else if (s.length() == 1) return s.toUpperCase(); else return s; } }