Java CharArrayReader.read(char[] b, int off, int len)方法範例

2019-10-16 22:15:31

Java CharArrayReader.read(char[] b, int off, int len)方法範例

CharArrayReaderCharArrayReader.read(char[] b, int off, int len)方法的語法如下。

public int read(char[] b, int off, int len)  throws IOException

範例

在下面的程式碼中展示了如何使用CharArrayReader.read(char[] b, int off, int len)方法。

import java.io.CharArrayReader;

public class Main {
  public static void main(String[] args) throws Exception {

    char[] ch = { 'H', 'E', 'L', 'L', 'O' };

    char[] d = new char[5];


    CharArrayReader car = new CharArrayReader(ch);

    // read character to the destination buffer
    car.read(d, 3, 2);

    // for every character in the buffer
    for (char c : d) {
      int i = (int) c;
      if (i == 0) {
        System.out.println("0");
      } else {
        System.out.println(c);
      }
    }

  }
}

上面的程式碼生成以下結果。

0
0
0
H
E