com.github.powerlibraries.io.builder.targets.FileTarget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iopower Show documentation
Show all versions of iopower Show documentation
Power Libraries is a small project to collect some repeatedly needed or otherwise useful Java 8 classes in a collection of tiny libraries.
IO Power is the first and really tiny library of the Power Libraries. It contains some simple helper method for opening Input- and Outputstreams. The main purpose of IO Power is to make opening streams, readers and writers less cluttered and simple to understand.
package com.github.powerlibraries.io.builder.targets;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
/**
* This class represents a file as the target of the output chain.
* @author Manuel Hegner
*
*/
public class FileTarget implements Target {
private File file;
public FileTarget(File file) {
this.file=file;
}
@Override
public OutputStream openStream() throws IOException {
return new FileOutputStream(file);
}
@Override
public boolean hasName() {
return true;
}
@Override
public String getName() {
return file.getName();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy