- public class Text013
- {
- public static void main(String[] args)
- {
- System.out.println(getStr("HM程序员",1));
- }
- public static String getStr(String str,int index)
- {
- byte[] bytes = str.getBytes(); //转成字节数组
-
- if(index > 2 && index%2!=0) //根据Index 判断。大于2,而且后面还是单个数字。那肯定出现?
- index--; //那就--
-
- return new String(bytes,0,index);
- }
- }
复制代码
楼主。我就知道这么多。麻烦明天公布答案。记得回复我 一下 |