Here you can find the source of uncapitalize(String string)
public static String uncapitalize(String string)
//package com.java2s; //License from project: Open Source License public class Main { public static String uncapitalize(String string) { return string.substring(0, 1).toLowerCase() + string.substring(1); }//from w w w . j ava 2 s . c o m }