java中获取字符串中某一个字符

String str = "addsdsd";

charfir = str.charAt(0);//获取字符串的第一个字符

char i = str.charAt(i);//获取字符串的第i个字符

你可能感兴趣的:(java中获取字符串中某一个字符)