位置:首页 > Java技术 > Java基础教程 > Java String getChars()方法

Java String getChars()方法

描述

此方法将这个字符串字符复制到目的字符数组。

语法

此方法定义的语法如下:

public void getChars(int srcBegin,
                     int srcEnd,
                     char[] dst,
                     int dstBegin)

参数

这里是参数的细节:

  • srcBegin -- 要拷贝的字符串的第一个字符的索引。

  • srcEnd -- 要拷贝的字符串的最后一个字符之后的索引。

  • dst -- 目标数组。

  • dstBegin -- 目标数组中开始的偏移量。

返回值:

  • 它不返回任何值,但抛出一个IndexOutOfBoundsException。

例子:

import java.io.*;

public class Test{
   public static void main(String args[]){
      String Str1 = new String("Welcome to Tutorialspoint.com");
      char[] Str2 = new char[7];

      try{
         Str1.getChars(2, 9, Str2, 0);
         System.out.print("Copied Value = " );
         System.out.println(Str2 );

      }catch( Exception ex){
         System.out.println("Raised exception...");
      }
   }
}

这将产生以下结果:

Copied Value = lcome t