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

cucumber.runtime.io.UTF8FileWriter Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package cucumber.runtime.io;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.nio.charset.Charset;

public class UTF8FileWriter extends OutputStreamWriter {
    public UTF8FileWriter(File file) throws IOException {
        super(new FileOutputStream(file), Charset.forName("UTF-8"));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy