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

se.l4.commons.io.InputStreamBytes Maven / Gradle / Ivy

There is a newer version: 0.4.2
Show newest version
package se.l4.commons.io;

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

/**
 * Implementation of {@link Bytes} over a {@link InputStream}.
 * 
 * @author Andreas Holstenson
 *
 */
public class InputStreamBytes
	implements Bytes
{
	private final IoSupplier in;

	public InputStreamBytes(IoSupplier in)
	{
		this.in = in;
	}
	
	@Override
	public InputStream asInputStream()
		throws IOException
	{
		return in.get();
	}
	
	@Override
	public byte[] toByteArray()
		throws IOException
	{
		ByteArrayOutputStream out = new ByteArrayOutputStream();
		try(InputStream in = this.in.get())
		{
			byte[] data = new byte[8192];
			int read;
			while((read = in.read(data)) != -1)
			{
				out.write(data, 0, read);
			}
		}
		return out.toByteArray();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy