home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / win95 / sieciowe / hotja32.lzh / hotjava / classsrc / java / io / printstream.java < prev    next >
Text File  |  1995-08-11  |  5KB  |  222 lines

  1. /*
  2.  * @(#)PrintStream.java    1.15 95/02/21 Arthur van Hoff
  3.  *
  4.  * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software
  7.  * and its documentation for NON-COMMERCIAL purposes and without
  8.  * fee is hereby granted provided that this copyright notice
  9.  * appears in all copies. Please refer to the file "copyright.html"
  10.  * for further important copyright and licensing information.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  13.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  14.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  15.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  16.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  17.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  18.  */
  19.  
  20. package java.io;
  21.  
  22. /**
  23.  * This class implements an output stream that has
  24.  * additional methods for printing. You can specify
  25.  * that the stream should be flushed every time a
  26.  * newline character is written.<p>
  27.  *
  28.  * <em>The top byte of 16 bit characters is discarded.</em><p>
  29.  * Example:
  30.  * <pre>
  31.  *    System.out.println("Hello world!");
  32.  *    System.out.print("x = ");
  33.  *    System.out.println(x);
  34.  *    System.out.println("y = " + y);
  35.  * </pre>
  36.  * @version     1.15, 21 Feb 1995
  37.  * @author    Arthur van Hoff
  38.  */
  39. public
  40. class PrintStream extends FilterOutputStream {
  41.     private boolean autoflush;
  42.  
  43.     /**
  44.      * Creates a new PrintStream.
  45.      * @param out    the output stream
  46.      */
  47.     public PrintStream(OutputStream out) {
  48.     this(out, false);
  49.     }
  50.  
  51.     /**
  52.      * Creates a new PrintStream, with auto flushing.
  53.      * @param out    the output stream
  54.      * @param autoflush if true the stream automatically flushes
  55.      *        its output when a newline character is printed.
  56.      */
  57.     public PrintStream(OutputStream out, boolean autoflush) {
  58.     super(out);
  59.     this.autoflush = autoflush;
  60.     }
  61.  
  62.     /**
  63.      * Writes a byte. Will block until the byte is actually
  64.      * written.
  65.      * @param b the byte
  66.      * @exception IOException i/o error occurred
  67.      */
  68.     public void write(int b) {
  69.     out.write(b);
  70.     if (autoflush && (b == '\n')) {
  71.         out.flush();
  72.     }
  73.     }
  74.  
  75.     /**
  76.      * Writes a sub array of bytes. To be efficient it should
  77.      * be overridden in a subclass. 
  78.      * @param b    the data to be written
  79.      * @param off    the start offset in the data
  80.      * @param len    the number of bytes that are written
  81.      * @exception IOException i/o error occurred
  82.      */
  83.     public void write(byte b[], int off, int len) {
  84.     out.write(b, off, len);
  85.     if (autoflush) {
  86.         out.flush();
  87.     }
  88.     }
  89.     
  90.     /**
  91.      * Prints an object.
  92.      */
  93.     public void print(Object obj) {
  94.     print(String.valueOf(obj));
  95.     }
  96.  
  97.     /**
  98.      * Prints a String.
  99.      */
  100.     synchronized public void print(String s) {
  101.     int len = s.length();
  102.     for (int i = 0 ; i < len ; i++) {
  103.         write(s.charAt(i));
  104.     }
  105.     }
  106.  
  107.     /**
  108.      * Prints an array of characters.
  109.      */
  110.     synchronized public void print(char s[]) {
  111.     for (int i = 0 ; i < s.length ; i++) {
  112.         write(s[i]);
  113.     }
  114.     }
  115.  
  116.     /**
  117.      * Prints an integer.
  118.      */
  119.     public void print(int i) {
  120.     print(String.valueOf(i));
  121.     }
  122.  
  123.     /**
  124.      * Prints a long.
  125.      */
  126.     public void print(long l) {
  127.     print(String.valueOf(l));
  128.     }
  129.  
  130.     /**
  131.      * Prints a float.
  132.      */
  133.     public void print(float f) {
  134.     print(String.valueOf(f));
  135.     }
  136.  
  137.     /**
  138.      * Prints a double.
  139.      */
  140.     public void print(double d) {
  141.     print(String.valueOf(d));
  142.     }
  143.  
  144.     /**
  145.      * Prints a boolean.
  146.      */
  147.     public void print(boolean b) {
  148.     print(b ? "true" : "false");
  149.     }
  150.     
  151.     /**
  152.      * Prints a newline.
  153.      */
  154.     public void println() {
  155.     write('\n');
  156.     }
  157.     
  158.     /**
  159.      * Prints an object followed by a newline.
  160.      */
  161.     synchronized public void println(Object obj) {
  162.     print(obj);
  163.     write('\n');
  164.     }
  165.  
  166.     /**
  167.      * Prints a string followed by a newline.
  168.      */
  169.     synchronized public void println(String s) {
  170.     print(s);
  171.     write('\n');
  172.     }
  173.     
  174.     /**
  175.      * Prints an array of characters followed by a newline.
  176.      */
  177.     synchronized public void println(char s[]) {
  178.     print(s);
  179.     write('\n');
  180.     }
  181.  
  182.     /**
  183.      * Prints an integer followed by a newline.
  184.      */
  185.     synchronized public void println(int i) {
  186.     print(i);
  187.     write('\n');
  188.     }
  189.  
  190.     /**
  191.      * Prints a long followed by a newline.
  192.      */
  193.     synchronized public void println(long l) {
  194.     print(l);
  195.     write('\n');
  196.     }
  197.  
  198.     /**
  199.      * Prints a float followed by a newline.
  200.      */
  201.     synchronized public void println(float f) {
  202.     print(f);
  203.     write('\n');
  204.     }
  205.  
  206.     /**
  207.      * Prints a double followed by a newline.
  208.      */
  209.     synchronized public void println(double d) {
  210.     print(d);
  211.     write('\n');
  212.     }
  213.  
  214.     /**
  215.      * Prints a boolean followed by a newline.
  216.      */
  217.     synchronized public void println(boolean b) {
  218.     print(b);
  219.     write('\n');
  220.     }
  221. }
  222.