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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程