Java PrintWriter append(CharSequence)方法及示例

来源:这里教程网 时间:2026-02-17 21:06:50 作者:

Java PrintWriter append(CharSequence)方法及示例

Java中PrintWriter类的append(CharSequence)方法用于在流中写入指定的CharSequence。这个CharSequence值被作为一个参数。

语法。

public PrintWriter append(CharSequence charSequence)

参数。该方法接受一个强制性参数charSequence,它是要写入流中的CharSequence。

返回值。该方法返回这个PrintWriter实例。

下面的方法说明了append(CharSequence)方法的工作。

程序 1:

// Java program to demonstrate// PrintWriter append(CharSequence) method  import java.io.*;  class GFG {    public static void main(String[] args)    {          try {              // Create a PrintWriter instance            PrintWriter writer                = new PrintWriter(System.out);              // Write the CharSequence 'GeeksForGeeks'            // to this writer using append() method            // This will put the charSequence in the stream            // till it is printed on the console            writer.append("GeeksForGeeks");              writer.flush();        }        catch (Exception e) {            System.out.println(e);        }    }}

输出:

GeeksForGeeks

程序2。

// Java program to demonstrate// PrintWriter append(CharSequence) method  import java.io.*;  class GFG {    public static void main(String[] args)    {          try {              // Create a PrintWriter instance            PrintWriter writer                = new PrintWriter(System.out);              // Write the CharSequence 'GFG'            // to this writer using append() method            // This will put the charSequence in the stream            // till it is printed on the console            writer.append("GFG");              writer.flush();        }        catch (Exception e) {            System.out.println(e);        }    }}

输出:

GFG

相关推荐