streamtowriter.java

来自「cqME :java framework for TCK test.」· Java 代码 · 共 78 行

JAVA
78
字号
/* * $Id$ * * Copyright 1996-2007 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 only, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License version 2 for more details (a copy is * included at /legal/license.txt). * * You should have received a copy of the GNU General Public License * version 2 along with this work; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 or visit www.sun.com if you need additional * information or have any questions. * */package com.sun.tck.cdc.lib;import java.io.*;public class StreamToWriter extends PrintStream {    PrintWriter writer;    public StreamToWriter(PrintWriter writer) {	super(new ByteArrayOutputStream(0));	this.writer = writer;    }    public void flush() {	writer.flush();    }    public void close() {	writer.close();    }    public boolean checkError() {	return writer.checkError();    }        public void write(int b) {	// do nothing    }    public void write(byte[] buf, int off, int len) {	// do nothing    }    public void print(boolean b) { writer.print(b); }    public void print(char c) { writer.print(c); }    public void print(int i) { writer.print(i); }    public void print(long l) { writer.print(l); }    public void print(float f) { writer.print(f); }    public void print(double d) { writer.print(d); }    public void print(char[] s) { writer.print(s); }    public void print(String s) { writer.print(s); }    public void print(Object obj) { writer.print(obj); }        public void println() { writer.println(); }    public void println(boolean x) { writer.println(x); }    public void println(char x) { writer.println(x); }    public void println(int x) { writer.println(x); }    public void println(long x) { writer.println(x); }    public void println(float x) { writer.println(x); }    public void println(double x) { writer.println(x); }    public void println(char[] x) { writer.println(x); }    public void println(String x) { writer.println(x); }    public void println(Object x) { writer.println(x); }}

⌨️ 快捷键说明

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