ByteArrayInputStream(byte[] buf, int offset, int length) 建構函式範例

2019-10-16 22:17:05

Java ByteArrayInputStream(byte[] buf, int offset, int length) 建構函式範例

ByteArrayInputStreamByteArrayInputStream(byte[] buf, int offset, int length)建構函式的語法如下。

public ByteArrayInputStream(byte[] buf,     int offset,     int length)

範例

在下面的程式碼中展示了如何使用ByteArrayInputStream.ByteArrayInputStream(byte[] buf, int offset, int length)建構函式。

import java.io.ByteArrayInputStream;
import java.io.IOException;

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

    byte[] buf = { 65, 66, 67, 68, 69, 70 ,71 ,72 ,73 };
    // Copyright: WWw  .Yi iB aI  .C O m
    // create new byte array input stream
    ByteArrayInputStream bais = new ByteArrayInputStream(buf,2,3);


  }
}