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

org.gridkit.jvmtool.spi.parsers.FileInputStreamSource Maven / Gradle / Ivy

There is a newer version: 0.23
Show newest version
package org.gridkit.jvmtool.spi.parsers;

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

/**
 * Parser may try to downcast {@link InputStreamSource} to this implementation
 * if it supports only file based IO.
 * 
 * @author Alexey Ragozin ([email protected])
 */
public class FileInputStreamSource implements InputStreamSource {

	private final File file;
	
	public FileInputStreamSource(File file) {
		this.file = file;
	}

	public File getSourceFile() {
		return file;
	}
	
	@Override
	public InputStream open() throws IOException {
		return new FileInputStream(file);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy