As of now I\'m using this code to make my first letter in a string capital
String output = input.substring(0, 1).toUpperCase() + input.substring(1); <
String output = input.substring(0, 1).toUpperCase() + input.substring(1);
Character.toString(a.charAt(0)).toUpperCase()+a.substring(1)
P.S = a is string.