Here you can find the source of capitalize(String s)
public static String capitalize(String s)
//package com.java2s; //License from project: Apache License public class Main { public static String capitalize(String s) { if (s.length() == 0) { return s; } else {/*from w ww.ja v a 2 s . c o m*/ char ac[] = s.toCharArray(); ac[0] = Character.toUpperCase(ac[0]); return new String(ac); } } }