Here you can find the source of toLowerCaseFirstLetter(String str)
public static String toLowerCaseFirstLetter(String str)
//package com.java2s; public class Main { public static String toLowerCaseFirstLetter(String str) { return str.substring(0, 1).toLowerCase() + str.substring(1); }//from w w w .ja va 2 s .c om }