String lower = Name.toLowerCase(); int a = Name.indexOf(\" \",0); String first = lower.substring(0, a); String last = lower.substring(a+1); char f = first.charAt(0);
The easiest solution for your case - change the first line, let it do just the opposite thing:
String lower = Name.toUpperCase ();
Of course, it's worth to change its name too.