java utils 慢慢整理

/**
* 字符串首字母大写
* @param entryStr
* @return
* @throws Exception
*//*
private static String changeFirstStrUpcase(String entryStr) throws Exception {
byte[] items = entryStr.getBytes();
items[0] = (byte) ((char) items[0] - 'a' + 'A');
return new String(items);
}

你可能感兴趣的:(java)