Here you can find the source of capitalizeFirst(String name)
public static String capitalizeFirst(String name)
//package com.java2s; //License from project: Apache License public class Main { public static String capitalizeFirst(String name) { char first = name.charAt(0); first = Character.toUpperCase(first); StringBuffer newName = new StringBuffer(name); newName.setCharAt(0, first);/*w w w . j a v a 2s. co m*/ return newName.toString(); } }