www.pudn.com > j2me_cldc-1_1-fcs-src-winunix.rar > PrintStream.java


/*
 * Copyright © 2003 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 *
 */

package java.io;

/**
 * A PrintStream adds functionality to another output stream,
 * namely the ability to print representations of various data values
 * conveniently.  Two other features are provided as well.  Unlike other output
 * streams, a PrintStream never throws an
 * IOException; instead, exceptional situations merely set an
 * internal flag that can be tested via the checkError method.
 *
 * 

All characters printed by a PrintStream are converted into * bytes using the platform's default character encoding. * * @version 12/17/01 (CLDC 1.1) * @author Frank Yellin * @author Mark Reinhold * @since JDK1.0, CLDC 1.0 */ public class PrintStream extends OutputStream { private boolean trouble = false; /** * Track both the text- and character-output streams, so that their buffers * can be flushed without flushing the entire stream. */ private OutputStreamWriter charOut; private OutputStream byteOut; /** * Create a new print stream. This stream will not flush automatically. * * @param out The output stream to which values and objects will be * printed */ public PrintStream(OutputStream out) { if (out == null) { throw new NullPointerException("Null output stream"); } byteOut = out; this.charOut = new OutputStreamWriter(out); } /** * Check to make sure that the stream has not been closed */ private void ensureOpen() throws IOException { if (charOut == null) throw new IOException("Stream closed"); } /** * Flush the stream. This is done by writing any buffered output bytes to * the underlying output stream and then flushing that stream. * * @see java.io.OutputStream#flush() */ public void flush() { synchronized (this) { try { ensureOpen(); charOut.flush(); } catch (IOException x) { trouble = true; } } } private boolean closing = false; /* To avoid recursive closing */ /** * Close the stream. This is done by flushing the stream and then closing * the underlying output stream. * * @see java.io.OutputStream#close() */ public void close() { synchronized (this) { if (! closing) { closing = true; try { charOut.close(); } catch (IOException x) { trouble = true; } charOut = null; byteOut = null; } } } /** * Flush the stream and check its error state. The internal error state * is set to true when the underlying output stream throws an * IOException, * and when the setError method is invoked. * * @return True if and only if this stream has encountered an * IOException, or the * setError method has been invoked */ public boolean checkError() { if (charOut != null) flush(); return trouble; } /** * Set the error state of the stream to true. * * @since JDK1.1 */ protected void setError() { trouble = true; } /* * Exception-catching, synchronized output operations, * which also implement the write() methods of OutputStream */ /** * Write the specified byte to this stream. * *

Note that the byte is written as given; to write a character that * will be translated according to the platform's default character * encoding, use the print(char) or println(char) * methods. * * @param b The byte to be written * @see #print(char) * @see #println(char) */ public void write(int b) { try { synchronized (this) { ensureOpen(); byteOut.write(b); } } catch (IOException x) { trouble = true; } } /** * Write len bytes from the specified byte array starting at * offset off to this stream. * *

Note that the bytes will be written as given; to write characters * that will be translated according to the platform's default character * encoding, use the print(char) or println(char) * methods. * * @param buf A byte array * @param off Offset from which to start taking bytes * @param len Number of bytes to write */ public void write(byte buf[], int off, int len) { try { synchronized (this) { ensureOpen(); byteOut.write(buf, off, len); } } catch (IOException x) { trouble = true; } } /* * The following private methods on the text- and character-output streams * always flush the stream buffers, so that writes to the underlying byte * stream occur as promptly as with the original PrintStream. */ private void write(char buf[]) { try { synchronized (this) { ensureOpen(); charOut.write(buf); } } catch (IOException x) { trouble = true; } } private void write(String s) { try { synchronized (this) { ensureOpen(); charOut.write(s); } } catch (IOException x) { trouble = true; } } private void newLine() { try { synchronized (this) { ensureOpen(); charOut.write('\n'); } } catch (IOException x) { trouble = true; } } /* Methods that do not terminate lines */ /** * Print a boolean value. The string produced by {@link * java.lang.String#valueOf(boolean)} is translated into bytes * according to the platform's default character encoding, and these bytes * are written in exactly the manner of the * {@link #write(int)} method. * * @param b The boolean to be printed */ public void print(boolean b) { write(b ? "true" : "false"); } /** * Print a character. The character is translated into one or more bytes * according to the platform's default character encoding, and these bytes * are written in exactly the manner of the * {@link #write(int)} method. * * @param c The char to be printed */ public void print(char c) { write(String.valueOf(c)); } /** * Print an integer. The string produced by {@link * java.lang.String#valueOf(int)} is translated into bytes * according to the platform's default character encoding, and these bytes * are written in exactly the manner of the * {@link #write(int)} method. * * @param i The int to be printed * @see java.lang.Integer#toString(int) */ public void print(int i) { write(String.valueOf(i)); } /** * Print a long integer. The string produced by {@link * java.lang.String#valueOf(long)} is translated into bytes * according to the platform's default character encoding, and these bytes * are written in exactly the manner of the * {@link #write(int)} method. * * @param l The long to be printed * @see java.lang.Long#toString(long) */ public void print(long l) { write(String.valueOf(l)); } /** * Print a floating point number. The string produced by * {@link java.lang.String#valueOf(float)} is translated * into bytes according to the platform's default character encoding, * and these bytes are written in exactly the manner of the * {@link #write(int)} method. * * @param f The float to be printed * @see java.lang.Float#toString(float) * @since CLDC 1.1 */ public void print(float f) { write(String.valueOf(f)); } /** * Print a double-precision floating point number. The string produced by * {@link java.lang.String#valueOf(double)} is translated * into bytes according to the platform's default character encoding, * and these bytes are written in exactly the manner of the * {@link #write(int)} method. * * @param d The double to be printed * @see java.lang.Double#toString(double) * @since CLDC 1.1 */ public void print(double d) { write(String.valueOf(d)); } /** * Print an array of characters. The characters are converted into bytes * according to the platform's default character encoding, and these bytes * are written in exactly the manner of the * {@link #write(int)} method. * * @param s The array of chars to be printed * * @throws NullPointerException If s is null */ public void print(char s[]) { write(s); } /** * Print a string. If the argument is null then the string * "null" is printed. Otherwise, the string's characters are * converted into bytes according to the platform's default character * encoding, and these bytes are written in exactly the manner of the * {@link #write(int)} method. * * @param s The String to be printed */ public void print(String s) { if (s == null) { s = "null"; } write(s); } /** * Print an object. The string produced by the {@link * java.lang.String#valueOf(Object)} method is translated into bytes * according to the platform's default character encoding, and these bytes * are written in exactly the manner of the * {@link #write(int)} method. * * @param obj The Object to be printed * @see java.lang.Object#toString() */ public void print(Object obj) { write(String.valueOf(obj)); } /* Methods that do terminate lines */ /** * Terminate the current line by writing the line separator string. The * line separator string is defined by the system property * line.separator, and is not necessarily a single newline * character ('\n'). */ public void println() { newLine(); } /** * Print a boolean and then terminate the line. This method behaves as * though it invokes {@link #print(boolean)} and then * {@link #println()}. * * @param x The boolean to be printed */ public void println(boolean x) { synchronized (this) { print(x); newLine(); } } /** * Print a character and then terminate the line. This method behaves as * though it invokes {@link #print(char)} and then * {@link #println()}. * * @param x The char to be printed. */ public void println(char x) { synchronized (this) { print(x); newLine(); } } /** * Print an integer and then terminate the line. This method behaves as * though it invokes {@link #print(int)} and then * {@link #println()}. * * @param x The int to be printed. */ public void println(int x) { synchronized (this) { print(x); newLine(); } } /** * Print a long and then terminate the line. This method behaves as * though it invokes {@link #print(long)} and then * {@link #println()}. * * @param x The long to be printed. */ public void println(long x) { synchronized (this) { print(x); newLine(); } } /** * Print a float and then terminate the line. This method behaves as * though it invokes {@link #print(float)} and then * {@link #println()}. * * @param x The float to be printed. * @since CLDC 1.1 */ public void println(float x) { synchronized (this) { print(x); newLine(); } } /** * Print a double and then terminate the line. This method behaves as * though it invokes {@link #print(double)} and then * {@link #println()}. * * @param x The double to be printed. * @since CLDC 1.1 */ public void println(double x) { synchronized (this) { print(x); newLine(); } } /** * Print an array of characters and then terminate the line. This method * behaves as though it invokes {@link #print(char[])} and * then {@link #println()}. * * @param x an array of chars to print. */ public void println(char x[]) { synchronized (this) { print(x); newLine(); } } /** * Print a String and then terminate the line. This method behaves as * though it invokes {@link #print(String)} and then * {@link #println()}. * * @param x The String to be printed. */ public void println(String x) { synchronized (this) { print(x); newLine(); } } /** * Print an Object and then terminate the line. This method behaves as * though it invokes {@link #print(Object)} and then * {@link #println()}. * * @param x The Object to be printed. */ public void println(Object x) { synchronized (this) { print(x); newLine(); } } }