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

com.daredayo.util.io.CountingOutputStream Maven / Gradle / Ivy

package com.daredayo.util.io;

import java.io.IOException;
import java.io.OutputStream;

public class CountingOutputStream extends OutputStream {
	
	public int length = 0;

	@Override
	public void write(int b) throws IOException {
		length++;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy