⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 memoryoutputstream.java

📁 Chord package into p2psim
💻 JAVA
字号:
/***************************************************************************
 *                                                                         *
 *                          MemoryOutputStream.java                        *
 *                            -------------------                          *
 *   date                 : 8. September 2004, 19:08                       *
 *   copyright            : (C) 2004 Distributed and Mobile Systems Group  *
 *                              Lehrstuhl fuer Praktische Informatik       *
 *                              Universitaet Bamberg                       *
 *                              http://www.uni-bamberg.de/pi/              *
 *   email                : sven.kaffille@uni-bamberg.de                   *
 *                                                                         *
 *                                                                         *
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   A copy of the license can be found in the license.txt file supplied   *
 *   with this software or at: http://www.gnu.org/copyleft/gpl.html        *
 *                                                                         *
 ***************************************************************************/

package de.uniba.wiai.lspi.util.console;

import java.io.OutputStream;
import java.io.PrintStream;

/**
 * This class can be used as {@link OutputStream} provided to a {@link PrintStream} 
 * that can be used to substitute {@link System#out}. 
 * The output is saved in a buffer that can be printed by invocation of 
 * {@link #printOutputTo(PrintStream)} to the provided {@link PrintStream}. 
 * The content of the buffer can be obtained as {@link String} by the 
 * {@link #getOutput()} method. 
 * {@link #clearBuffer()} empties the buffer and all output, that has been saved 
 * before, is deleted. 
 *
 * @author  sven
 * @version 1.0.5
 */
public class MemoryOutputStream extends java.io.OutputStream {
    
    /** 
     * The internal buffer of this output stream. 
     */
    private StringBuffer bufferedOutput; 
    
    /** 
     * Creates a new instance of MemoryOutputStream 
     */
    public MemoryOutputStream() {
        this.bufferedOutput = new StringBuffer();
    }
    
    /** 
     * Clears the internal buffer of this output stream.  
     */
    public synchronized void clearBuffer(){
        this.bufferedOutput = new StringBuffer();
    }
    
    /** 
     * Overwritten from {@link OutputStream}. Writes the byte <code>b</code>
     * to the internal buffer. 
     * @param b The byte to write to the internal buffer. 
     */    
    public synchronized void write(int b) {
        /* Convert b to byte and put it into a byte array, */
        byte[] barray = new byte[]{(byte)b};
        /* so that it can be converted to a readable String. */
        String bAsString = new String(barray);
        /* Save to the current buffer. */
        this.bufferedOutput.append(bAsString);
    }
    
    /** 
     * Get the content of the internal buffer. 
     * @return The output that has been saved before.
     */    
    public synchronized String getOutput(){
        return this.bufferedOutput.toString();
    }
    
    /** 
     * Print the content of the internal buffer to the given 
     * {@link PrintStream} <code>out</code>. 
     * @param out The {@link PrintStream} to print the saved output to. 
     */    
    public synchronized void printOutputTo(PrintStream out){
        out.print(this.getOutput());
    }
    
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -