All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.firefly.utils.io.ByteArrayPipedStream Maven / Gradle / Ivy

There is a newer version: 4.0.3.2
Show newest version
package com.firefly.utils.io;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

public class ByteArrayPipedStream implements PipedStream {
	
	private ByteArrayOutputStream out;
	private ByteArrayInputStream in;
	private int length;
	
	public ByteArrayPipedStream(int length) {
		if(length >= Integer.MAX_VALUE)
			throw new IllegalArgumentException("http body length too larger");
		
		this.length = length;
	}

	@Override
	public void close() throws IOException {
		in = null;
		out = null;
	}

	@Override
	public InputStream getInputStream() {
		if(in == null) {
			in = new ByteArrayInputStream(out.toByteArray());
			out = null;
		}
		return in;
	}

	@Override
	public OutputStream getOutputStream() {
		if(out == null) {
			out = new ByteArrayOutputStream(length);
		}
		return out;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy