原文: https://beginnersbook.com/2013/12/java-string-getchars-method-example/

方法getChars()用于将String字符复制到字符数组。

  1. public void getChars(int srcBegin, int srcEnd, char[] dest, int destBegin)

参数说明:

srcBegin - 要复制的字符串中第一个字符的索引。
srcEnd - 要复制的字符串中最后一个字符后的索引。
dest - 目标字符数组,其中String中的字符被复制。
destBegin - 数组中的索引,从字符将被推入数组开始。

抛出IndexOutOfBoundsException - 如果出现以下任何一种情况:
srcBegin < 0srcBegin小于零。
srcBegin > srcEndsrcBegin大于srcEnd
srcEnd > string.lengthsrcEnd大于此字符串的长度。
destBegin < 0destBegin为负。
dstBegin+(srcEnd-srcBegin)大于dest.length

示例:getChars()方法

  1. public class GetCharsExample{
  2. public static void main(String args[]){
  3. String str = new String("This is a String Handling Tutorial");
  4. char[] array = new char[6];
  5. str.getChars(10, 16, array, 0);
  6. System.out.println("Array Content:" );
  7. for(char temp: array){
  8. System.out.print(temp);
  9. }
  10. char[] array2 = new char[]{'a','a','a','a','a','a','a','a'};
  11. str.getChars(10, 16, array2, 2);
  12. System.out.println("Second Array Content:" );
  13. for(char temp: array2){
  14. System.out.print(temp);
  15. }
  16. }
  17. }

输出:

  1. Array Content:
  2. StringSecond Array Content:
  3. aaString