mirror of
https://github.com/corda/corda.git
synced 2025-01-10 06:52:44 +00:00
a8bed52097
such as %s, %d, %x... also width, left justify, zerofill flags are implemented. Many of the other formats do not work, see the comments in avian.FormatString javadoc and look for FIXME and TODO items for more information on features that are known to not work correctly.
169 lines
3.7 KiB
Java
169 lines
3.7 KiB
Java
/* Copyright (c) 2008-2015, Avian Contributors
|
|
|
|
Permission to use, copy, modify, and/or distribute this software
|
|
for any purpose with or without fee is hereby granted, provided
|
|
that the above copyright notice and this permission notice appear
|
|
in all copies.
|
|
|
|
There is NO WARRANTY for this software. See license.txt for
|
|
details. */
|
|
|
|
package java.io;
|
|
|
|
public class PrintStream extends OutputStream {
|
|
private final OutputStream out;
|
|
private final boolean autoFlush;
|
|
|
|
private static class Static {
|
|
private static final byte[] newline
|
|
= System.getProperty("line.separator").getBytes();
|
|
}
|
|
|
|
public PrintStream(OutputStream out, boolean autoFlush) {
|
|
this.out = out;
|
|
this.autoFlush = autoFlush;
|
|
}
|
|
|
|
public PrintStream(OutputStream out, boolean autoFlush, String encoding)
|
|
throws UnsupportedEncodingException
|
|
{
|
|
this.out = out;
|
|
this.autoFlush = autoFlush;
|
|
|
|
if (! (encoding.equals("UTF-8") || encoding.equals("ISO-8859-1"))) {
|
|
throw new UnsupportedEncodingException(encoding);
|
|
}
|
|
}
|
|
|
|
public PrintStream(OutputStream out) {
|
|
this(out, false);
|
|
}
|
|
|
|
public synchronized void print(String s) {
|
|
try {
|
|
out.write(s.getBytes());
|
|
if (autoFlush) flush();
|
|
} catch (IOException e) { }
|
|
}
|
|
|
|
public void print(Object o) {
|
|
print(String.valueOf(o));
|
|
}
|
|
|
|
public void print(boolean v) {
|
|
print(String.valueOf(v));
|
|
}
|
|
|
|
public void print(char c) {
|
|
print(String.valueOf(c));
|
|
}
|
|
|
|
public void print(int v) {
|
|
print(String.valueOf(v));
|
|
}
|
|
|
|
public void print(long v) {
|
|
print(String.valueOf(v));
|
|
}
|
|
|
|
public void print(float v) {
|
|
print(String.valueOf(v));
|
|
}
|
|
|
|
public void print(double v) {
|
|
print(String.valueOf(v));
|
|
}
|
|
|
|
public void print(char[] s) {
|
|
print(String.valueOf(s));
|
|
}
|
|
|
|
public synchronized void printf(java.util.Locale locale, String format, Object... args) {
|
|
// should this be cached in an instance variable??
|
|
final java.util.Formatter formatter = new java.util.Formatter(this);
|
|
formatter.format(locale, format, args);
|
|
}
|
|
|
|
public synchronized void printf(String format, Object... args) {
|
|
final java.util.Formatter formatter = new java.util.Formatter(this);
|
|
formatter.format(format, args);
|
|
}
|
|
|
|
public void format(String format, Object... args) {
|
|
printf(format, args);
|
|
}
|
|
|
|
public void format(java.util.Locale locale, String format, Object... args) {
|
|
printf(locale, format, args);
|
|
}
|
|
|
|
public synchronized void println(String s) {
|
|
try {
|
|
out.write(s.getBytes());
|
|
out.write(Static.newline);
|
|
if (autoFlush) flush();
|
|
} catch (IOException e) { }
|
|
}
|
|
|
|
public synchronized void println() {
|
|
try {
|
|
out.write(Static.newline);
|
|
if (autoFlush) flush();
|
|
} catch (IOException e) { }
|
|
}
|
|
|
|
public void println(Object o) {
|
|
println(String.valueOf(o));
|
|
}
|
|
|
|
public void println(boolean v) {
|
|
println(String.valueOf(v));
|
|
}
|
|
|
|
public void println(char c) {
|
|
println(String.valueOf(c));
|
|
}
|
|
|
|
public void println(int v) {
|
|
println(String.valueOf(v));
|
|
}
|
|
|
|
public void println(long v) {
|
|
println(String.valueOf(v));
|
|
}
|
|
|
|
public void println(float v) {
|
|
println(String.valueOf(v));
|
|
}
|
|
|
|
public void println(double v) {
|
|
println(String.valueOf(v));
|
|
}
|
|
|
|
public void println(char[] s) {
|
|
println(String.valueOf(s));
|
|
}
|
|
|
|
public void write(int c) throws IOException {
|
|
out.write(c);
|
|
if (autoFlush && c == '\n') flush();
|
|
}
|
|
|
|
public void write(byte[] buffer, int offset, int length) throws IOException {
|
|
out.write(buffer, offset, length);
|
|
if (autoFlush) flush();
|
|
}
|
|
|
|
public void flush() {
|
|
try {
|
|
out.flush();
|
|
} catch (IOException e) { }
|
|
}
|
|
|
|
public void close() {
|
|
try {
|
|
out.close();
|
|
} catch (IOException e) { }
|
|
}
|
|
}
|