Java tutorial
//package com.java2s; import java.util.Locale; public class Main { public final static String convertFristToUpperCase(String temp) { String frist = temp.substring(0, 1); String other = temp.substring(1); return frist.toUpperCase(Locale.getDefault()) + other; } }