Uses of Interface
java.lang.Appendable
-
Packages that use Appendable 软件包 描述 java.io 通过数据流,序列化和文件系统提供系统输入和输出。java.lang 提供对Java编程语言设计至关重要的类。java.nio 定义缓冲区,它是数据的容器,并提供其他NIO包的概述。java.rmi.server 提供用于支持RMI服务器端的类和接口。java.time.format 提供打印和解析日期和时间的类。java.util 包含集合框架,一些国际化支持类,服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,位数组和几个其他实用程序类。 -
-
Uses of Appendable in java.io
Classes in java.io that implement Appendable 变量和类型 类 描述 class
BufferedWriter
将文本写入字符输出流,缓冲字符,以便有效地写入单个字符,数组和字符串。class
CharArrayWriter
该类实现了一个可用作Writer的字符缓冲区。class
FileWriter
使用默认缓冲区大小将文本写入字符文件。class
FilterWriter
用于编写过滤字符流的抽象类。class
OutputStreamWriter
OutputStreamWriter是从字符流到字节流的桥接:使用指定的charset
将写入其中的字符编码为字节。class
PipedWriter
管道字符输出流。class
PrintStream
PrintStream
将功能添加到另一个输出流,即能够方便地打印各种数据值的表示。class
PrintWriter
将对象的格式化表示打印到文本输出流。class
StringWriter
在字符串缓冲区中收集其输出的字符流,然后可用于构造字符串。class
Writer
用于写入字符流的抽象类。 -
Uses of Appendable in java.lang
Classes in java.lang that implement Appendable 变量和类型 类 描述 class
StringBuffer
线程安全,可变的字符序列。class
StringBuilder
一个可变的字符序列。Methods in java.lang that return Appendable 变量和类型 方法 描述 Appendable
Appendable. append(char c)
将指定的字符追加到此Appendable
。Appendable
Appendable. append(CharSequence csq)
将指定的字符序列追加到此Appendable
。Appendable
Appendable. append(CharSequence csq, int start, int end)
将指定字符序列的子序列追加到此Appendable
。 -
Uses of Appendable in java.nio
Classes in java.nio that implement Appendable 变量和类型 类 描述 class
CharBuffer
一个char缓冲区。 -
Uses of Appendable in java.rmi.server
Classes in java.rmi.server that implement Appendable 变量和类型 类 描述 class
LogStream
已过时。没有替代品 -
Uses of Appendable in java.time.format
Methods in java.time.format with parameters of type Appendable 变量和类型 方法 描述 void
DateTimeFormatter. formatTo(TemporalAccessor temporal, Appendable appendable)
使用此格式化程序将日期时间对象格式化为Appendable
。 -
Uses of Appendable in java.util
Methods in java.util that return Appendable 变量和类型 方法 描述 Appendable
Formatter. out()
返回输出的目标。Constructors in java.util with parameters of type Appendable 构造器 描述 Formatter(Appendable a)
构造具有指定目标的新格式化程序。Formatter(Appendable a, Locale l)
使用指定的目标和语言环境构造一个新的格式化程序。
-