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

  1. /*
  2.  * 95/05/12 @(#)StringBufferPrintStream.java    1.3 James Gosling
  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. import java.io.File;
  22.  
  23. /**
  24.  * File output stream constructed from a StringBuffer.
  25.  * This lets you create an output stream and capture its output in
  26.  * a String or StringBuffer.
  27.  * @author    James Gosling
  28.  */
  29. public
  30. class StringBufferPrintStream extends PrintStream {
  31.     private StringBuffer sb;
  32.  
  33.     /**
  34.      * Creates an output file given a StringBuffer.
  35.      */
  36.     public StringBufferPrintStream(StringBuffer fsb) {
  37.     super(null);
  38.     sb = fsb;
  39.     }
  40.    
  41.     /**
  42.     /**
  43.      * Creates an output file and a StringBuffer.
  44.      * Use toString or getStringBuffer to fetch the results.
  45.      */
  46.     public StringBufferPrintStream() {
  47.     super(null);
  48.     sb = new StringBuffer();;
  49.     }
  50.    
  51.     /**
  52.      * Write a byte.
  53.      */
  54.     public void write(int b) {
  55.     sb.appendChar(b);
  56.     }
  57.  
  58.     /**
  59.      * Closes the stream.
  60.      */
  61.     public void close() {
  62.     sb = null;
  63.     }
  64.  
  65.     /**
  66.      * Return the contents of the output stream as a String
  67.      */
  68.     public String toString() {
  69.     return sb==null ? "" : sb.toString();
  70.     }
  71.  
  72.     /**
  73.      * Return the string buffer associated with the output stream.
  74.      */
  75.     public StringBuffer getStringBuffer() {
  76.     return sb;
  77.     }
  78.  
  79.     /**
  80.      * Prints a String.
  81.      */
  82.     public void print(String s) {
  83.     sb.append(s);
  84.     }
  85.  
  86.     /**
  87.      * Prints an array of characters.
  88.      */
  89.     public void print(char s[]) {
  90.     sb.append(s);
  91.     }
  92. }
  93.