用示例在 Java 中编写器追加(CharSequence)方法
原文:https://www . geesforgeks . org/writer-appendcharsequence-method-in-Java-with-examples/
Java 中 Writer 类的追加(CharSequence) 方法用于在 Writer 上写入指定的 CharSequence。这个字符序列值被作为一个参数。
语法:
public Writer append(CharSequence charSequence)
参数:此方法接受一个强制参数字符序列,它是要写入编写器的字符序列。
返回值:这个方法返回这个 Writer 实例。
下面的方法说明了 append(CharSequence)方法的工作原理:
程序 1:
// Java program to demonstrate
// Writer append(CharSequence) method
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
// Create a Writer instance
Writer writer
= new PrintWriter(System.out);
// Write the CharSequence 'GeeksForGeeks'
// to this writer using append() method
// This will put the charSequence in the writer
// till it is printed on the console
writer.append("GeeksForGeeks");
writer.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
Output:
GeeksForGeeks
程序 2:
// Java program to demonstrate
// Writer append(CharSequence) method
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
// Create a Writer instance
Writer writer
= new PrintWriter(System.out);
// Write the CharSequence 'GFG'
// to this writer using append() method
// This will put the charSequence in the writer
// till it is printed on the console
writer.append("GFG");
writer.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
Output:
GFG
版权属于:月萌API www.moonapi.com,转载请注明出处