很简单的一个代码
private String lowerFirstCase(String str){ char [] chars = str.toCharArray(); chars[0] += 32; return String.valueOf(chars); }