betacode

Руководство Java ByteArrayInputStream

  1. ByteArrayInputStream
  2. Examples

1. ByteArrayInputStream

ByteArrayInputStream - это подкласс InputStream. Верный имени, ByteArrayInputStream используется для чтения массива byte посредством InputStream.
ByteArrayInputStream constructors
ByteArrayInputStream​(byte[] buf)

ByteArrayInputStream​(byte[] buf, int offset, int length)
Конструктор ByteArrayInputStream(byte[] buf) создает объект ByteArrayInputStream для чтения массива byte.
Конструктор ByteArrayInputStream(byte[] buf, int offset, int length) создает объект ByteArrayInputStream для чтения массива byte из индекса offset в offset+length.
Все методы ByteArrayInputStream наследуются от InputStream.
Methods
int available()  
void close()  
void mark​(int readAheadLimit)  
boolean markSupported()  
int read()  
int read​(byte[] b, int off, int len)  
void reset()  
long skip​(long n)

2. Examples

Например: Чтение массива byte посредством InputStream:
ByteArrayInputStreamEx1.java
package org.o7planning.bytearrayinputstream.ex;

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

public class ByteArrayInputStreamEx1 {

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

        byte[] byteArray = new byte[] {84, 104, 105, 115, 32, 105, 115, 32, 116, 101, 120, 116};

        ByteArrayInputStream is = new ByteArrayInputStream(byteArray);
        
        int b;
        while((b = is.read()) != -1) {
            // Convert byte to character.
            char ch = (char) b;
            System.out.println(b + " --> " + ch);
        }
    }
}
Output:
84 --> T
104 --> h
105 --> i
115 --> s
32 -->  
105 --> i
115 --> s
32 -->  
116 --> t
101 --> e
120 --> x
116 --> t
В принципе, все методы ByteArrayInputStream наследуются от InputStream, поэтому вы можете найти дополнительные примеры использования этих методов в статье ниже:

Руководства Java IO

Show More