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

com.hibegin.http.io.LengthByteArrayInputStream Maven / Gradle / Ivy

Go to download

Simple, flexible, less dependent, more extended. Less memory footprint, can quickly build Web project. Can quickly run embedded, Android devices

There is a newer version: 0.3.162
Show newest version
package com.hibegin.http.io;

import java.io.ByteArrayInputStream;

public class LengthByteArrayInputStream extends ByteArrayInputStream {
    private final long length;

    public LengthByteArrayInputStream(byte[] buf) {
        super(buf);
        this.length = buf.length;
    }

    public long getLength() {
        return length;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy