Top Fields Constructors Methods
org.python.core

public Class StdoutWrapper

extends OutputStream
Class Inheritance
Known Direct Subclasses
org.python.core.FixedFileWrapper, org.python.core.StderrWrapper
Imports
java.io.OutputStream, org.python.core.util.StringUtil

Field Summary

Modifier and TypeField and Description
protected String

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public void
flush()

Overrides java.io.OutputStream.flush.

Implements java.io.Flushable.flush.

Flushes this output stream and forces any buffered output bytes to be written out.

public void
protected PyObject
protected PyObject
public void
public void
public void
public void
public void
println(boolean useUnicode)

private String
private void
private String
protected void
public void
public void
write(int
the byte.
i
)

Implements abstract java.io.OutputStream.write.

Writes the specified byte to this output stream.

public void
write(byte[]
the data.
data
,
int
the start offset in the data.
off
,
int
the number of bytes to write.
len
)

Overrides java.io.OutputStream.write.

Writes len bytes from the specified byte array starting at offset off to this output stream.

Inherited from java.io.OutputStream:
closenullOutputStreamwrite

Field Detail

nameback to summary
protected String name

Constructor Detail

StdoutWrapperback to summary
public StdoutWrapper()

Method Detail

flushback to summary
public void flush()

Overrides java.io.OutputStream.flush.

Implements java.io.Flushable.flush.

Doc from java.io.OutputStream.flush.

Flushes this output stream and forces any buffered output bytes to be written out. The general contract of flush is that calling it is an indication that, if any bytes previously written have been buffered by the implementation of the output stream, such bytes should immediately be written to their intended destination.

If the intended destination of this stream is an abstraction provided by the underlying operating system, for example a file, then flushing the stream guarantees only that bytes previously written to the stream are passed to the operating system for writing; it does not guarantee that they are actually written to a physical device such as a disk drive.

Annotations
@Override
flushLineback to summary
public void flushLine()
getObjectback to summary
protected PyObject getObject(PySystemState ss)
myFileback to summary
protected PyObject myFile()
printCommaback to summary
public void printComma(PyObject o)
printlnback to summary
public void println(String s)
printlnback to summary
public void println(PyObject o)
printlnback to summary
public void println()
printlnback to summary
public void println(boolean useUnicode)
printToFileback to summary
private String printToFile(PyFile file, PyObject o)
printToFileObjectback to summary
private void printToFileObject(PyObject file, PyObject o)
printToFileWriterback to summary
private String printToFileWriter(PyFileWriter file, PyObject o)
setObjectback to summary
protected void setObject(PySystemState ss, PyObject out)
writeback to summary
public void write(String s)
writeback to summary
public void write(int i)

Implements abstract java.io.OutputStream.write.

Doc from java.io.OutputStream.write.

Writes the specified byte to this output stream. The general contract for write is that one byte is written to the output stream. The byte to be written is the eight low-order bits of the argument b. The 24 high-order bits of b are ignored.

Parameters
i:int

the byte.

Annotations
@Override
writeback to summary
public void write(byte[] data, int off, int len)

Overrides java.io.OutputStream.write.

Doc from java.io.OutputStream.write.

Writes len bytes from the specified byte array starting at offset off to this output stream. The general contract for write(b, off, len) is that some of the bytes in the array b are written to the output stream in order; element b[off] is the first byte written and b[off+len-1] is the last byte written by this operation.

If b is null, a NullPointerException is thrown.

If off is negative, or len is negative, or off+len is greater than the length of the array b, then an IndexOutOfBoundsException is thrown.

Parameters
data:byte[]

the data.

off:int

the start offset in the data.

len:int

the number of bytes to write.

Annotations
@Override