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

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

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

import com.github.akurilov.commons.io.TextStreamInput;

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

/**
 Text file based lines input
 */
public class TextFileInput
extends TextStreamInput
implements FileInput {

	private final Path filePath;

	public TextFileInput(final Path filePath)
	throws IOException {
		super(Files.newInputStream(filePath, INPUT_OPEN_OPTIONS));
		this.filePath = filePath;
	}

	@Override
	public Path getFilePath() {
		return filePath;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy