List of usage examples for java.io OutputStreamWriter subclass-usage
From source file net.ostis.scpdev.builder.scg.SCsWriter.java
/** * @author Dmitry Lazurkin */ public class SCsWriter extends OutputStreamWriter { public static final int SC_CONST = 1;
From source file org.apache.xmlrpc.XmlWriter.java
/**
* A XML writer intended for single-thread usage. If you feed it a
* <code>ByteArrayInputStream</code>, it may be necessary to call
* <code>writer.flush()</code> before calling
* <code>buffer.toByteArray()</code> to get the data written to
* your byte buffer.
From source file fr.dutra.confluence2wordpress.xmlrpc.XmlWriter.java
/** * This is a copy of the original XmlWriter from Apache XmlRpc. * The main purpose is to get rid of the Base64 multi-threading issue. * @see "https://issues.apache.org/jira/browse/CODEC-96" */ public class XmlWriter extends OutputStreamWriter {