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

com.github.akurilov.commons.io.text.TextFileInput Maven / Gradle / Ivy

There is a newer version: 2.3.6
Show newest version
package com.github.akurilov.commons.io.text;

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

/**
 Text file based lines input
 */
public class TextFileInput
extends LinesBufferedStreamInput {
	
	public TextFileInput(final Path filePath)
	throws IOException {
		super(Files.newInputStream(filePath, StandardOpenOption.READ));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy