InputStream

class InputStream(val wrapped: OutputStream) extends OutputStream with DataOutput

A BufferedWriter with the underlying java.io.OutputStream exposed

Note that all writes that occur through this class are thread-safe and synchronized. If you wish to perform writes without the synchronization overhead, you can use the underlying wrapped stream directly

trait Flushable
trait Closeable
class Object
trait Matchable
class Any

Value members

Concrete methods

override def close(): Unit
Definition Classes
override def flush(): Unit
Definition Classes
def write(b: Int): Unit
override def write(b: Array[Byte]): Unit
Definition Classes
override def write(b: Array[Byte], off: Int, len: Int): Unit
Definition Classes
def write(s: String): Unit
def write(s: Array[Char]): Unit
def writeByte(v: Int): Unit
def writeChar(v: Int): Unit
def writeInt(v: Int): Unit