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

com.github.akurilov.commons.io.file.TextFileOutput 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.Input;
import com.github.akurilov.commons.io.TextStreamOutput;

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

/**
 Text file based lines output
 */
public class TextFileOutput
extends TextStreamOutput
implements FileOutput {
	
	private final Path filePath;

	public TextFileOutput()
	throws IOException {
		this(Files.createTempFile(null, ".txt"));
	}

	public TextFileOutput(final Path filePath)
	throws IOException {
		super(Files.newOutputStream(filePath, OUTPUT_OPEN_OPTIONS));
		this.filePath = filePath;
	}
	
	@Override
	public Input getInput()
	throws IOException {
		return new TextFileInput(filePath);
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy