import java.io.*;
class ByteArrayStream
{
public static void main(String[] args) throws IOException
{
byteArray();
}
//操作字节数组的方法
public static void byteArray()throws IOException
{
//数据源。
ByteArrayInputStream bis = new ByteArrayInputStream("abcdefg".getBytes());//字节数组读取流
//数据目的
ByteArrayOutputStream bos = new ByteArrayOutputStream();//字节数组输出流
int by = 0;//读取字节存储
while ((by=bis.read())!=-1)//循环读取
{
bos.write(by);//输出
// sop(by);
}