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

com.emc.mongoose.common.io.TextFileInput Maven / Gradle / Ivy

The newest version!
package com.emc.mongoose.common.io;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;

/**
 Created by kurila on 15.11.16.
 */
public class TextFileInput
extends LinesBufferedStreamInput {
	
	public TextFileInput(final Path filePath)
	throws IOException {
		super(Files.newInputStream(filePath, StandardOpenOption.READ));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy