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

com.github.powerlibraries.io.builder.sources.FileSource Maven / Gradle / Ivy

Go to download

Power Libraries is a small project to collect some repeatedly needed or otherwise useful Java 8 classes in a collection of tiny libraries. IO Power is the first and really tiny library of the Power Libraries. It contains some simple helper method for opening Input- and Outputstreams. The main purpose of IO Power is to make opening streams, readers and writers less cluttered and simple to understand.

There is a newer version: 1.1.3
Show newest version
package com.github.powerlibraries.io.builder.sources;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;

/**
 * This class represents a source that is a f as an input.
 * @author Manuel Hegner
 */
public class FileSource implements Source {

	private File file;

	public FileSource(File file) {
		this.file=file;
	}
	
	@Override
	public InputStream openStream() throws IOException {
		return new FileInputStream(file);
	}
	
	@Override
	public boolean hasName() {
		return true;
	}

	/**
	 * @return the file name
	 */
	@Override
	public String getName() {
		return file.getName();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy