将一个字符串首字母转换为大写,其余部分转换为小写
public static String switchFirstChar(String s){
//获取首字母
String s1 = s.substring(0,1);
//获取剩余部分
String s2 = s.substring(1,s.length());
//将首字母转换为大写
s1 = s1.toUpperCase();
//将其余部分转换为小写
s2 = s2.toLowerCase();
String s3 = s1 + s2;
return s3;
}
将下面的数组转换为指定的形式
int[] arr = {1,2,3};
转换为[1,2,3]
String s = "";
s += "[";
for(int i = 0; i < arr.length;i++){
if(i == arr.length - 1){
s += arr[i];
s += "]";
}else {
s += arr[i];
s += ",";
}
}
原文地址:http://firrty.blog.51cto.com/4028329/1729936