软件包 | 描述 |
---|---|
java.beans |
包含的类发展豆相关--基于JavaBeans组件™架构。
|
java.io |
通过数据流、序列化和文件系统提供系统的输入和输出。
|
java.net |
为实现网络应用程序提供类。
|
java.nio.channels |
定义了渠道,它代表的是能够执行I/O操作的实体连接,如文件和套接字;定义选择器,多路复用,非阻塞I/O操作。
|
java.nio.channels.spi |
为
java.nio.channels 包服务提供商类。
|
java.nio.file |
定义的接口和类的java虚拟机访问文件,文件属性,文件系统。
|
java.rmi.server |
支持RMI服务器端提供的类和接口。
|
java.security |
为安全框架提供类和接口。
|
java.sql |
提供的API来访问和处理的数据存储在数据源(通常是一个关系数据库)使用java
TM编程语言。
|
java.util |
包含集合框架、遗留的集合类、事件模型、日期和时间的设施、国际化和各种实用工具类(一个字符串标记,一个随机数发生器,和一位阵列)。
|
java.util.jar |
阅读和写作的罐提供的类(java文件)文件格式,它是基于标准的ZIP文件格式可选清单文件。
|
java.util.stream |
类,以支持元素流上的功能样式操作,如Map减少集合上的转换。
|
java.util.zip |
阅读和写作的标准压缩和gzip文件格式提供的类。
|
javax.crypto |
提供加密操作的类和接口。
|
javax.imageio.stream |
一包I/O API处理底层I/O从文件和流的java图像。
|
javax.management.loading |
提供实现高级动态加载的类。
|
javax.management.remote |
用于远程访问JMX MBean服务器接口。
|
javax.management.remote.rmi |
RMI连接器是一个JMX远程API,使用RMI传输客户端请求到远程管理服务器连接器。
|
javax.net.ssl |
为安全套接字包提供类。
|
javax.sound.midi |
提供的接口和类的I / O,测序和合成的MIDI(乐器数字接口)数据。
|
javax.sound.sampled |
提供采样音频数据的捕获、处理和回放的接口和类。
|
javax.sql |
提供了对服务器端数据源的访问和处理来自java
TM编程语言的API。
|
javax.sql.rowset |
JDBC
RowSet 实现标准接口和基类。
|
javax.sql.rowset.spi |
三分之一方供应商在其执行同步提供程序中使用的标准类和接口。
|
javax.swing |
提供了一套“轻量级”(所有的java语言)组件,以最大可能的程度,在所有平台上工作。
|
javax.tools |
为可以从程序调用的工具提供接口,例如,编译器。
|
Modifier and Type | Class and Description |
---|---|
class |
XMLDecoder
的
XMLDecoder 类用于读取XML文件的创建和使用
XMLEncoder 就像
ObjectInputStream 。
|
class |
XMLEncoder
的
XMLEncoder 类是一个另类的
ObjectOutputStream 可以用来生成,
ObjectOutputStream 可以用来创建对象的二进制表示
Serializable 同样一个JavaBean的文本表示形式。
|
Modifier and Type | Interface and Description |
---|---|
interface |
Closeable
一个
Closeable 是源或数据,可以关闭的目的地。
|
interface |
ObjectInput
objectinput延伸DataInput接口包括对象的阅读。
|
interface |
ObjectOutput
objectoutput扩展数据输出接口包括写作对象。
|
Modifier and Type | Class and Description |
---|---|
class |
BufferedInputStream
一个
BufferedInputStream 添加功能到另一个输入流,即缓冲输入和支持
mark 和
reset 方法的能力。
|
class |
BufferedOutputStream
类实现一个缓冲输出流。
|
class |
BufferedReader
从一个字符输入流中读取文本,缓冲字符,以便提供字符、数组和行的有效读取。
|
class |
BufferedWriter
将文本写入到字符输出流中,缓冲字符,以便提供对单个字符、数组和字符串的有效写入。
|
class |
ByteArrayInputStream
一个
ByteArrayInputStream 包含一个内部缓冲区包含的字节,可以从流中读取。
|
class |
ByteArrayOutputStream
这个类实现了一个输出流,其中的数据被写入一个字节数组。
|
class |
CharArrayReader
这个类实现了一个可以作为字符输入流使用的字符缓冲区。
|
class |
CharArrayWriter
这个类实现了一个可以作为一个作家的字符缓冲区。
|
class |
DataInputStream
数据输入流,让应用程序读取原始java数据类型从底层输入流中的一个独立于机器的方式。
|
class |
DataOutputStream
数据输出流可以让一个应用java写的原始数据类型在一个便携式的方式输出流。
|
class |
FileInputStream
一个
FileInputStream 获得输入的字节从文件系统中的文件。
|
class |
FileOutputStream
文件输出流是一个
File 或一个
FileDescriptor 数据写入输出流。
|
class |
FileReader
用于读取字符文件的方便类。
|
class |
FileWriter
用于写入字符文件的方便类。
|
class |
FilterInputStream
一个
FilterInputStream 包含一些其他输入流,它使用作为其基本数据源,可能改变数据沿道路或提供额外的功能。
|
class |
FilterOutputStream
这类是所有类的父类,滤波器的输出流。
|
class |
FilterReader
用于读取滤波字符流的抽象类。
|
class |
FilterWriter
用于写入筛选的字符流的抽象类。
|
class |
InputStream
该抽象类是所有的类表示字节输入流的父类。
|
class |
InputStreamReader
一个inputstreamreader是桥从字节流字符流:将字节数组解码成文字使用指定的
charset 。
|
class |
LineNumberInputStream
过时的。
这个类错误地假定字节充分代表字符。作为JDK 1.1,对字符流操作的首选方式是通过新的字符流类,包括计算行数类。
|
class |
LineNumberReader
保持线路编号的缓冲字符输入流。
|
class |
ObjectInputStream
ObjectInputStream将原始数据和对象以前写的使用对象。
|
class |
ObjectOutputStream
一个对象写入原始数据类型和java对象图的一个输出流。
|
class |
OutputStream
该抽象类是所有类的字节输出流的父类。
|
class |
OutputStreamWriter
一个outputstreamwriter是桥从字符流的字节流:将字符串编码为字节,使用指定的
charset 。
|
class |
PipedInputStream
一个管道输入流应该连接到一个管道输出流,管道输入流,然后提供任何数据字节写入到管道输出流。
|
class |
PipedOutputStream
一个管道输出流可以连接到一个管道输入流,以创建一个通信管道。
|
class |
PipedReader
管道字符输入流。
|
class |
PipedWriter
管道字符输出流。
|
class |
PrintStream
一个
PrintStream 添加功能到另一个输出流,即打印各种数据值表示的功能。
|
class |
PrintWriter
将对象的格式化的表示形式打印到文本输出流中。
|
class |
PushbackInputStream
一个
PushbackInputStream 添加功能到另一个输入流,即能够“推”或“未读”一个字节。
|
class |
PushbackReader
一个允许字符被推回流的字符流阅读器。
|
class |
RandomAccessFile
这个类的实例支持对随机存取文件的读和写。
|
class |
Reader
读取字符流的抽象类。
|
class |
SequenceInputStream
一个
SequenceInputStream 代表其他输入流的逻辑连接。
|
class |
StringBufferInputStream
过时的。
这个类没有正确地将字符转换为字节。作为 JDK 1.1,要从一个字符串创建一流的首选方式是通过
StringReader 类。
|
class |
StringReader
一个字符串,其源是一个字符串。
|
class |
StringWriter
一个字符流,它收集在一个字符串缓冲区的输出,然后可以用来构建一个字符串。
|
class |
Writer
用于写入到字符流的抽象类。
|
Modifier and Type | Class and Description |
---|---|
class |
DatagramSocket
这类代表一个发送和接收数据包的插座。
|
class |
MulticastSocket
多播数据报套接字类发送和接收IP多播包是有用的。
|
class |
ServerSocket
这个类实现了服务器套接字。
|
class |
Socket
这个类实现了客户端套接字(也被称为“套接字”)。
|
class |
URLClassLoader
这个类装载器用于从目录的搜索路径中加载类和资源,指的是两个文件和目录。
|
Modifier and Type | Interface and Description |
---|---|
interface |
AsynchronousByteChannel
一个可以读写字节的异步信道。
|
interface |
AsynchronousChannel
支持异步I / O操作的通道。
|
interface |
ByteChannel
一个可以读写字节的通道。
|
interface |
Channel
一个I / O操作的关系。
|
interface |
GatheringByteChannel
一个可以从一个缓冲区的序列写字节的通道。
|
interface |
InterruptibleChannel
可以异步关闭和中断的信道。
|
interface |
MulticastChannel
支持因特网协议(IP)多播的网络信道。
|
interface |
NetworkChannel
一个网络套接字的通道。
|
interface |
ReadableByteChannel
一个可以读取字节的通道。
|
interface |
ScatteringByteChannel
可以将字节读取到一个缓冲区序列的一个通道。
|
interface |
SeekableByteChannel
一个字节通道保持当前位置,允许位置被改变。
|
interface |
WritableByteChannel
一个可以写字节的通道。
|
Modifier and Type | Class and Description |
---|---|
class |
AsynchronousFileChannel
用于读取、写入和操作文件的异步通道。
|
class |
AsynchronousServerSocketChannel
面向流的监听套接字的异步信道。
|
class |
AsynchronousSocketChannel
面向流的连接套接字的异步通道。
|
class |
DatagramChannel
对于面向数据报套接字可选择频道。
|
class |
FileChannel
用于读、写、映射和操作文件的通道。
|
class |
FileLock
表示文件区域上的锁的令牌。
|
static class |
Pipe.SinkChannel
一个通道代表一
Pipe 可写结尾。
|
static class |
Pipe.SourceChannel
一个通道代表一
Pipe 可读的结束。
|
class |
SelectableChannel
一个通道,可以通过
Selector 复用。
|
class |
Selector
多路复用器的
SelectableChannel 对象。
|
class |
ServerSocketChannel
一种面向流的监听套接字的可选通道。
|
class |
SocketChannel
面向流的连接套接字的可选通道。
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractInterruptibleChannel
可中断通道基本实现类。
|
class |
AbstractSelectableChannel
用于可选择信道的基本实现类。
|
class |
AbstractSelector
为基础实现类选择器。
|
Modifier and Type | Interface and Description |
---|---|
interface |
DirectoryStream<T>
一个对象遍历目录中的条目。
|
interface |
SecureDirectoryStream<T>
一个
DirectoryStream 定义操作是相对开放的目录文件。
|
interface |
WatchService
手表的服务,手表注册的对象的变化和事件。
|
Modifier and Type | Class and Description |
---|---|
class |
FileSystem
提供一个文件系统的接口,并为对象访问文件系统中的文件和其他对象的工厂。
|
Modifier and Type | Class and Description |
---|---|
class |
LogStream
过时的。
没有更换
|
Modifier and Type | Class and Description |
---|---|
class |
DigestInputStream
一个透明的流,它使用通过流的比特来更新相关的消息摘要。
|
class |
DigestOutputStream
一个透明的流,它使用通过流的比特来更新相关的消息摘要。
|
Modifier and Type | Interface and Description |
---|---|
interface |
CallableStatement
该接口用于执行SQL存储过程。
|
interface |
Connection
一个特定数据库的连接(会话)。
|
interface |
PreparedStatement
对象是一个预编译的SQL语句。
|
interface |
ResultSet
表示数据库结果集的数据表,它通常是通过执行查询数据库的语句生成的。
|
interface |
Statement
该对象用于执行静态SQL语句并返回它产生的结果。
|
Modifier and Type | Class and Description |
---|---|
class |
Formatter
因为printf格式字符串翻译。
|
class |
Scanner
一个简单的文本扫描程序,可以使用正则表达式解析原始类型和字符串。
|
Modifier and Type | Class and Description |
---|---|
class |
JarFile
的
JarFile 类用于读取任何文件,可以打开
java.io.RandomAccessFile JAR文件的内容。
|
class |
JarInputStream
的
JarInputStream 类用于从输入流读取任何JAR文件的内容。
|
class |
JarOutputStream
的
JarOutputStream 类用于写入JAR文件的内容对任何输出流。
|
Modifier and Type | Interface and Description |
---|---|
interface |
BaseStream<T,S extends BaseStream<T,S>>
用于流的基本接口,它是支持顺序和并行聚合操作的元素的序列。
|
interface |
DoubleStream
支持序列和并行聚合操作的原始双值元素序列。
|
interface |
IntStream
原始序列的int值元素支持串行和并行的聚合操作。
|
interface |
LongStream
支持序列和并行聚合操作的原始长值元素序列。
|
interface |
Stream<T>
支持顺序和并行聚合操作的元素序列。
|
Modifier and Type | Class and Description |
---|---|
class |
CheckedInputStream
一个输入流,同时保持一个校验所读取数据。
|
class |
CheckedOutputStream
一个输出流,也有被写数据校验和。
|
class |
DeflaterInputStream
实现以“deflate”压缩格式压缩数据的输入流过滤。
|
class |
DeflaterOutputStream
实现以“deflate”压缩格式压缩数据输出流过滤器的类。
|
class |
GZIPInputStream
实现以GZIP格式的压缩数据流过滤器的类。
|
class |
GZIPOutputStream
实现以GZIP格式写入压缩数据的流过滤器的类。
|
class |
InflaterInputStream
实现了在“deflate”压缩格式压缩数据流过滤器的类。
|
class |
InflaterOutputStream
实现了一个用于存储在“deflate”压缩格式压缩数据输出流过滤器。
|
class |
ZipFile
这个类用于从一个压缩文件中读取条目。
|
class |
ZipInputStream
这个类实现了一个用于读取压缩文件格式中的文件的输入流过滤器。
|
class |
ZipOutputStream
这个类实现了一个用于在压缩文件格式中写入文件的输出流过滤器。
|
Modifier and Type | Class and Description |
---|---|
class |
CipherInputStream
一个cipherinputstream由输入密码,read()方法返回,阅读从底层InputStream但已被密码同时处理的数据。
|
class |
CipherOutputStream
一个cipheroutputstream由OutputStream和密码,write()方法过程之前写出来的底层的数据输出流。
|
Modifier and Type | Interface and Description |
---|---|
interface |
ImageInputStream
一个可搜索的输入流接口使用的
ImageReader s。
|
interface |
ImageOutputStream
可查找的输出流接口使用的
ImageWriter s。
|
Modifier and Type | Class and Description |
---|---|
class |
FileCacheImageInputStream
对
ImageInputStream 获得其输入从一个普通的
InputStream 实现。
|
class |
FileCacheImageOutputStream
对
ImageOutputStream 写入输出到正规的
OutputStream 实现。
|
class |
FileImageInputStream
对
ImageInputStream 被输入一个
File 或
RandomAccessFile 实现。
|
class |
FileImageOutputStream
一个实现
ImageOutputStream 写其直接输出到
File 或
RandomAccessFile 。
|
class |
ImageInputStreamImpl
一个抽象类实现接口的
ImageInputStream 。
|
class |
ImageOutputStreamImpl
一个抽象类实现接口的
ImageOutputStream 。
|
class |
MemoryCacheImageInputStream
对
ImageInputStream 获得其输入从一个普通的
InputStream 实现。
|
class |
MemoryCacheImageOutputStream
对
ImageOutputStream 写入输出到正规的
OutputStream 实现。
|
Modifier and Type | Class and Description |
---|---|
class |
MLet
可以实例化和从远程URL来登记的MBean服务器的一个或几个MBeans。
|
class |
PrivateMLet
一种熔体不添加到
ClassLoaderRepository 。
|
Modifier and Type | Interface and Description |
---|---|
interface |
JMXConnector
一个JMX API接口的客户端。
|
Modifier and Type | Interface and Description |
---|---|
interface |
RMIConnection
RMI对象用于提出请求从客户端到MBeanServer MBeanServer在服务器端执行。
|
Modifier and Type | Class and Description |
---|---|
class |
RMIConnectionImpl
RMIConnection 接口的实现。
|
class |
RMIConnectionImpl_Stub |
class |
RMIConnector
一个远程RMI连接器连接。
|
class |
RMIIIOPServerImpl
一个
RMIServerImpl 是出口通过IIOP和创造为RMI对象的出口通过IIOP的客户端连接。
|
class |
RMIJRMPServerImpl
一是出口通过JRMP和创建RMI对象的出口通过JRMP客户端连接
RMIServer 对象。
|
class |
RMIServerImpl
RMI对象代表一个连接器服务器。
|
Modifier and Type | Class and Description |
---|---|
class |
SSLServerSocket
这类扩展
ServerSocket s和提供使用协议如安全套接字层(SSL)安全服务器套接字或传输层安全(TLS)协议。
|
class |
SSLSocket
这类扩展
Socket s提供安全套接字使用协议,如“安全套接字层(SSL)和IETF的“传输层安全协议(TLS)”。
|
Modifier and Type | Interface and Description |
---|---|
interface |
MidiDevice
MidiDevice 是所有MIDI设备底座接口。
|
interface |
MidiDeviceReceiver
|
interface |
MidiDeviceTransmitter
|
interface |
Receiver
一个
Receiver 接收
对象通常做点有用的响应,如解释它们产生的声音或原MIDI输出。
|
interface |
Sequencer
一个软件或硬件设备,播放MIDI
称为音序器。
|
interface |
Synthesizer
一个
Synthesizer 产生声音。
|
interface |
Transmitter
|
Modifier and Type | Interface and Description |
---|---|
interface |
Clip
的
Clip 接口代表一种特殊的数据线的音频数据可以被加载之前播放,而不是实时流。
|
interface |
DataLine
DataLine 添加媒体相关的功能,其超,
。
|
interface |
Line
的
Line 接口代表一个单声道或多声道音频饲料。
|
interface |
Mixer
混频器是一个具有一个或多个行的音频设备。
|
interface |
Port
端口是用于输入或输出音频或音频设备的简单的线。
|
interface |
SourceDataLine
源数据线是一个数据可能被写入的数据线。
|
interface |
TargetDataLine
目标数据线是一种
从音频数据可以被读取。
|
Modifier and Type | Class and Description |
---|---|
class |
AudioInputStream
一个音频输入流是一个具有指定音频格式和长度的输入流。
|
Modifier and Type | Interface and Description |
---|---|
interface |
RowSet
增加支持API的JavaBeans组件模型™JDBC接口。
|
Modifier and Type | Interface and Description |
---|---|
interface |
CachedRowSet
接口,
CachedRowSet 所有标准的实现必须实现。
|
interface |
FilteredRowSet
这
FilteredRowSet 所有标准的实现必须实现的标准接口。
|
interface |
JdbcRowSet
这
JdbcRowSet 所有标准的实现必须实现的标准接口。
|
interface |
JoinRowSet
的
JoinRowSet 接口提供了一种结合相关数据从不同的
RowSet 对象到一个
JoinRowSet 对象机制,这是一个SQL
JOIN 。
|
interface |
WebRowSet
那一
WebRowSet 实现必须实现的标准接口。
|
Modifier and Type | Interface and Description |
---|---|
interface |
SyncResolver
定义一个框架,允许应用程序使用一个手动决策树来决定在发生同步冲突时应该做什么。
|
Modifier and Type | Class and Description |
---|---|
class |
ProgressMonitorInputStream
监控从InputStream阅读进度。
|
Modifier and Type | Interface and Description |
---|---|
interface |
JavaFileManager
文件管理工具的操作™java编程语言的源文件和类文件。
|
interface |
StandardJavaFileManager
基于
java.io.File文件管理器。
|
Modifier and Type | Class and Description |
---|---|
class |
ForwardingJavaFileManager<M extends JavaFileManager>
向一个给定的文件管理器转发调用。
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.