PrintWriter.Format Method

Definition

Overloads

Format(Locale, String, Object[])

Writes a formatted string to this writer using the specified format string and arguments.

Format(String, Object[])

Writes a formatted string to this writer using the specified format string and arguments.

Format(Locale, String, Object[])

Writes a formatted string to this writer using the specified format string and arguments.

[Android.Runtime.Register("format", "(Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintWriter;", "GetFormat_Ljava_util_Locale_Ljava_lang_String_arrayLjava_lang_Object_Handler")]
public virtual Java.IO.PrintWriter Format (Java.Util.Locale? l, string format, params Java.Lang.Object[] args);
[<Android.Runtime.Register("format", "(Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintWriter;", "GetFormat_Ljava_util_Locale_Ljava_lang_String_arrayLjava_lang_Object_Handler")>]
abstract member Format : Java.Util.Locale * string * Java.Lang.Object[] -> Java.IO.PrintWriter
override this.Format : Java.Util.Locale * string * Java.Lang.Object[] -> Java.IO.PrintWriter

Parameters

l
Locale
format
String

A format string as described in <a href="../util/Formatter.html#syntax">Format string syntax</a>.

args
Object[]

Arguments referenced by the format specifiers in the format string. If there are more arguments than format specifiers, the extra arguments are ignored. The number of arguments is variable and may be zero. The maximum number of arguments is limited by the maximum dimension of a Java array as defined by <cite>The Java&trade; Virtual Machine Specification</cite>. The behaviour on a null argument depends on the <a href="../util/Formatter.html#syntax">conversion</a>.

Returns

This writer

Attributes

Remarks

Java documentation for java.io.PrintWriter.format(java.lang.String, java.lang.Object).

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

Format(String, Object[])

Writes a formatted string to this writer using the specified format string and arguments.

[Android.Runtime.Register("format", "(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintWriter;", "GetFormat_Ljava_lang_String_arrayLjava_lang_Object_Handler")]
public virtual Java.IO.PrintWriter Format (string format, params Java.Lang.Object[] args);
[<Android.Runtime.Register("format", "(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintWriter;", "GetFormat_Ljava_lang_String_arrayLjava_lang_Object_Handler")>]
abstract member Format : string * Java.Lang.Object[] -> Java.IO.PrintWriter
override this.Format : string * Java.Lang.Object[] -> Java.IO.PrintWriter

Parameters

format
String

A format string as described in <a href="../util/Formatter.html#syntax">Format string syntax</a>.

args
Object[]

Arguments referenced by the format specifiers in the format string. If there are more arguments than format specifiers, the extra arguments are ignored. The number of arguments is variable and may be zero. The maximum number of arguments is limited by the maximum dimension of a Java array as defined by <cite>The Java&trade; Virtual Machine Specification</cite>. The behaviour on a null argument depends on the <a href="../util/Formatter.html#syntax">conversion</a>.

Returns

This writer

Attributes

Remarks

Java documentation for java.io.PrintWriter.format(java.lang.String, java.lang.Object).

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