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

java.io.FileInputStream Maven / Gradle / Ivy

Go to download

OpenGL vector map library written in Java - running on Android, iOS, Desktop and within the browser.

There is a newer version: 0.20.0
Show newest version
package java.io;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class FileInputStream extends InputStream {

    static final Logger log = LoggerFactory.getLogger(FileInputStream.class);

    public FileInputStream(File f) {

    }

    public FileInputStream(String s) throws FileNotFoundException {
        log.debug("FileInputStream {}", s);
    }

    @Override
    public int read() throws IOException {
        return 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy