JavaSystem.Out Property

Definition

The "standard" output stream.

[Android.Runtime.Register("out")]
public static Java.IO.PrintStream? Out { get; }
[<Android.Runtime.Register("out")>]
static member Out : Java.IO.PrintStream

Property Value

Attributes

Remarks

The "standard" output stream. This stream is already open and ready to accept output data. Typically this stream corresponds to display output or another output destination specified by the host environment or user.

For simple stand-alone Java applications, a typical way to write a line of output data is: <blockquote>

System.out.println(data)

</blockquote>

See the println methods in class PrintStream.

Java documentation for java.lang.System.out.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to