Here you can find the source of toTitleCase(String string)
public static String toTitleCase(String string)
//package com.java2s; //License from project: LGPL public class Main { public static String toTitleCase(String string) { String result = ""; for (int i = 0; i < string.length(); i++) { String next = string.substring(i, i + 1); if (i == 0) { result += next.toUpperCase(); } else { result += next.toLowerCase(); }//from w w w. j a v a2s . c o m } return result; } }