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

com.files.util.FilesInputStream Maven / Gradle / Ivy

Go to download

The Files.com Java client library provides convenient access to the Files.com API from JVM based applications.

There is a newer version: 1.4.123
Show newest version
package com.files.util;

import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

public abstract class FilesInputStream extends InputStream implements Closeable {
    @Override
    public int read() throws IOException {
        return 0;
    }

    public long transferTo(OutputStream out) throws IOException{
        throw new IOException("transferTo not implemented");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy