Uses of Class
java.nio.ByteBuffer
-
Packages that use ByteBuffer 软件包 描述 com.sun.nio.sctp 用于流控制传输协议的Java API。java.lang 提供对Java编程语言设计至关重要的类。java.lang.module 通过解析和服务绑定来支持模块描述符和创建模块配置的类。java.net.http HTTP客户端和WebSocket APIjava.nio 定义缓冲区,它是数据的容器,并提供其他NIO包的概述。java.nio.channels 定义通道,表示与能够执行I / O操作的实体的连接,例如文件和套接字; 定义选择器,用于多路复用,非阻塞I / O操作。java.nio.charset 定义字符集,解码器和编码器,用于在字节和Unicode字符之间进行转换。java.nio.file.attribute 提供对文件和文件系统属性的访问的接口和类。java.security 提供安全框架的类和接口。java.util 包含集合框架,一些国际化支持类,服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,位数组和几个其他实用程序类。java.util.zip 提供用于读取和写入标准ZIP和GZIP文件格式的类。javax.crypto 提供加密操作的类和接口。javax.net.ssl 提供安全套接字包的类。javax.smartcardio Java™智能卡I / O APIjdk.nashorn.api.scripting 该软件包提供了javax.script
集成,这是使用Nashorn的首选方式。 -
-
Uses of ByteBuffer in com.sun.nio.sctp
Methods in com.sun.nio.sctp that return ByteBuffer 变量和类型 方法 描述 abstract ByteBuffer
SendFailedNotification. buffer()
返回要发送的数据。Methods in com.sun.nio.sctp with parameters of type ByteBuffer 变量和类型 方法 描述 abstract <T> MessageInfo
SctpChannel. receive(ByteBuffer dst, T attachment, NotificationHandler<T> handler)
接收到给定缓冲区的消息和/或处理通知。abstract <T> MessageInfo
SctpMultiChannel. receive(ByteBuffer buffer, T attachment, NotificationHandler<T> handler)
通过此频道接收消息和/或处理通知。abstract int
SctpChannel. send(ByteBuffer src, MessageInfo messageInfo)
通过此频道发送消息。abstract int
SctpMultiChannel. send(ByteBuffer buffer, MessageInfo messageInfo)
通过此频道发送消息。 -
Uses of ByteBuffer in java.lang
Methods in java.lang with parameters of type ByteBuffer 变量和类型 方法 描述 protected 类<?>
ClassLoader. defineClass(String name, ByteBuffer b, ProtectionDomain protectionDomain)
使用给定的ProtectionDomain
将ByteBuffer
转换为类类
的实例。 -
Uses of ByteBuffer in java.lang.module
Methods in java.lang.module that return types with arguments of type ByteBuffer 变量和类型 方法 描述 default Optional<ByteBuffer>
ModuleReader. read(String name)
读取资源,返回包含资源内容的字节缓冲区。Methods in java.lang.module with parameters of type ByteBuffer 变量和类型 方法 描述 static ModuleDescriptor
ModuleDescriptor. read(ByteBuffer bb)
从字节缓冲区中读取模块声明的二进制形式作为模块描述符。static ModuleDescriptor
ModuleDescriptor. read(ByteBuffer bb, Supplier<Set<String>> packageFinder)
从字节缓冲区中读取模块声明的二进制形式作为模块描述符。default void
ModuleReader. release(ByteBuffer bb)
释放一个字节缓冲区。 -
Uses of ByteBuffer in java.net.http
Methods in java.net.http with type parameters of type ByteBuffer 变量和类型 方法 描述 static <S extends Flow.Subscriber<? super List<ByteBuffer>>,T>
HttpResponse.BodyHandler<T>HttpResponse.BodyHandlers. fromSubscriber(S subscriber, Function<? super S,? extends T> finisher)
返回响应身体处理程序返回一个BodySubscriber
<T>
从获得的HttpResponse.BodySubscribers.fromSubscriber(Subscriber, Function)
,用给定的subscriber
和finisher
功能。static <S extends Flow.Subscriber<? super List<ByteBuffer>>,T>
HttpResponse.BodySubscriber<T>HttpResponse.BodySubscribers. fromSubscriber(S subscriber, Function<? super S,? extends T> finisher)
返回一个主体订阅者,它将所有响应主体转发给给定的Flow.Subscriber
。Methods in java.net.http that return types with arguments of type ByteBuffer 变量和类型 方法 描述 static HttpResponse.BodyHandler<Flow.Publisher<List<ByteBuffer>>>
HttpResponse.BodyHandlers. ofPublisher()
返回BodyHandler<Publisher<List<ByteBuffer>>>
,创建一个BodySubscriber
<Publisher<List<ByteBuffer>>>
从获得BodySubscribers.ofPublisher()
。static HttpResponse.BodySubscriber<Flow.Publisher<List<ByteBuffer>>>
HttpResponse.BodySubscribers. ofPublisher()
返回响应订阅者,该订阅者通过Publisher<List<ByteBuffer>>
发布响应正文。Methods in java.net.http with parameters of type ByteBuffer 变量和类型 方法 描述 default CompletionStage<?>
WebSocket.Listener. onBinary(WebSocket webSocket, ByteBuffer data, boolean last)
已收到二进制数据。default CompletionStage<?>
WebSocket.Listener. onPing(WebSocket webSocket, ByteBuffer message)
已收到Ping消息。default CompletionStage<?>
WebSocket.Listener. onPong(WebSocket webSocket, ByteBuffer message)
已收到Pong消息。CompletableFuture<WebSocket>
WebSocket. sendBinary(ByteBuffer data, boolean last)
使用给定缓冲区中的字节发送二进制数据。CompletableFuture<WebSocket>
WebSocket. sendPing(ByteBuffer message)
从给定缓冲区发送包含字节的Ping消息。CompletableFuture<WebSocket>
WebSocket. sendPong(ByteBuffer message)
从给定缓冲区发送包含字节的Pong消息。Method parameters in java.net.http with type arguments of type ByteBuffer 变量和类型 方法 描述 static HttpRequest.BodyPublisher
HttpRequest.BodyPublishers. fromPublisher(Flow.Publisher<? extends ByteBuffer> publisher)
返回从给定的Flow.Publisher
检索其正文的请求正文发布Flow.Publisher
。static HttpRequest.BodyPublisher
HttpRequest.BodyPublishers. fromPublisher(Flow.Publisher<? extends ByteBuffer> publisher, long contentLength)
返回从给定的Flow.Publisher
检索其正文的请求正文发布Flow.Publisher
。static HttpResponse.BodyHandler<Void>
HttpResponse.BodyHandlers. fromSubscriber(Flow.Subscriber<? super List<ByteBuffer>> subscriber)
返回响应身体处理程序返回一个BodySubscriber
<Void>
从获得的HttpResponse.BodySubscribers.fromSubscriber(Subscriber)
,用给定的subscriber
。static HttpResponse.BodySubscriber<Void>
HttpResponse.BodySubscribers. fromSubscriber(Flow.Subscriber<? super List<ByteBuffer>> subscriber)
返回一个主体订阅者,它将所有响应主体转发给给定的Flow.Subscriber
。 -
Uses of ByteBuffer in java.nio
Subclasses of ByteBuffer in java.nio 变量和类型 类 描述 class
MappedByteBuffer
直接字节缓冲区,其内容是文件的内存映射区域。Methods in java.nio that return ByteBuffer 变量和类型 方法 描述 ByteBuffer
ByteBuffer. alignedSlice(int unitSize)
创建一个新的字节缓冲区,其内容是此缓冲区内容的共享和对齐的子序列。static ByteBuffer
ByteBuffer. allocate(int capacity)
分配一个新的字节缓冲区。static ByteBuffer
ByteBuffer. allocateDirect(int capacity)
分配新的直接字节缓冲区。abstract ByteBuffer
ByteBuffer. asReadOnlyBuffer()
创建一个共享此缓冲区内容的新的只读字节缓冲区。abstract ByteBuffer
ByteBuffer. compact()
压缩此缓冲区 (可选操作) 。abstract ByteBuffer
ByteBuffer. duplicate()
创建一个共享此缓冲区内容的新字节缓冲区。ByteBuffer
ByteBuffer. get(byte[] dst)
相对批量 获取方法。ByteBuffer
ByteBuffer. get(byte[] dst, int offset, int length)
相对批量 获取方法。ByteBuffer
ByteBuffer. order(ByteOrder bo)
修改此缓冲区的字节顺序。abstract ByteBuffer
ByteBuffer. put(byte b)
相对 put方法 (可选操作) 。ByteBuffer
ByteBuffer. put(byte[] src)
相对批量 放置方法 (可选操作) 。ByteBuffer
ByteBuffer. put(byte[] src, int offset, int length)
相对批量 放置方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. put(int index, byte b)
绝对 放法 (可选操作) 。ByteBuffer
ByteBuffer. put(ByteBuffer src)
相对批量 放置方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. putChar(char value)
用于写入char值的相对 put方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. putChar(int index, char value)
用于写入char值的绝对 put方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. putDouble(double value)
用于写入double值的相对 put方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. putDouble(int index, double value)
用于写入double值的绝对 put方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. putFloat(float value)
用于写入浮点值的相对 put方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. putFloat(int index, float value)
用于写入浮点值的绝对 put方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. putInt(int value)
用于写入int值的相对 put方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. putInt(int index, int value)
用于写入int值的绝对 put方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. putLong(int index, long value)
用于写入长值的绝对 put方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. putLong(long value)
用于写入长值的相对 put方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. putShort(int index, short value)
用于写入短值的绝对 put方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. putShort(short value)
用于写入短值的相对 put方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. slice()
创建一个新的字节缓冲区,其内容是此缓冲区内容的共享子序列。static ByteBuffer
ByteBuffer. wrap(byte[] array)
将字节数组包装到缓冲区中。static ByteBuffer
ByteBuffer. wrap(byte[] array, int offset, int length)
将字节数组包装到缓冲区中。Methods in java.nio with parameters of type ByteBuffer 变量和类型 方法 描述 int
ByteBuffer. compareTo(ByteBuffer that)
比较此缓冲区与另一个缓冲区。int
ByteBuffer. mismatch(ByteBuffer that)
查找并返回此缓冲区与给定缓冲区之间第一个不匹配的相对索引。ByteBuffer
ByteBuffer. put(ByteBuffer src)
相对批量 放置方法 (可选操作) 。 -
Uses of ByteBuffer in java.nio.channels
Methods in java.nio.channels with parameters of type ByteBuffer 变量和类型 方法 描述 Future<Integer>
AsynchronousByteChannel. read(ByteBuffer dst)
从该通道读取一个字节序列到给定的缓冲区。<A> void
AsynchronousByteChannel. read(ByteBuffer dst, A attachment, CompletionHandler<Integer,? super A> handler)
从该通道读取一个字节序列到给定的缓冲区。abstract Future<Integer>
AsynchronousFileChannel. read(ByteBuffer dst, long position)
从给定文件位置开始,从该通道读取一个字节序列到给定缓冲区。abstract <A> void
AsynchronousFileChannel. read(ByteBuffer dst, long position, A attachment, CompletionHandler<Integer,? super A> handler)
从给定文件位置开始,从该通道读取一个字节序列到给定缓冲区。abstract Future<Integer>
AsynchronousSocketChannel. read(ByteBuffer dst)
abstract <A> void
AsynchronousSocketChannel. read(ByteBuffer[] dsts, int offset, int length, long timeout, TimeUnit unit, A attachment, CompletionHandler<Long,? super A> handler)
从该通道读取一系列字节到给定缓冲区的子序列。abstract <A> void
AsynchronousSocketChannel. read(ByteBuffer dst, long timeout, TimeUnit unit, A attachment, CompletionHandler<Integer,? super A> handler)
从该通道读取一个字节序列到给定的缓冲区。<A> void
AsynchronousSocketChannel. read(ByteBuffer dst, A attachment, CompletionHandler<Integer,? super A> handler)
abstract int
DatagramChannel. read(ByteBuffer dst)
从该通道读取数据报。long
DatagramChannel. read(ByteBuffer[] dsts)
从该通道读取数据报。abstract long
DatagramChannel. read(ByteBuffer[] dsts, int offset, int length)
从该通道读取数据报。abstract int
FileChannel. read(ByteBuffer dst)
从该通道读取一个字节序列到给定的缓冲区。long
FileChannel. read(ByteBuffer[] dsts)
从该通道读取一系列字节到给定的缓冲区。abstract long
FileChannel. read(ByteBuffer[] dsts, int offset, int length)
从该通道读取一系列字节到给定缓冲区的子序列。abstract int
FileChannel. read(ByteBuffer dst, long position)
从给定文件位置开始,从该通道读取一个字节序列到给定缓冲区。int
ReadableByteChannel. read(ByteBuffer dst)
从该通道读取一个字节序列到给定的缓冲区。long
ScatteringByteChannel. read(ByteBuffer[] dsts)
从该通道读取一系列字节到给定的缓冲区。long
ScatteringByteChannel. read(ByteBuffer[] dsts, int offset, int length)
从该通道读取一系列字节到给定缓冲区的子序列。int
SeekableByteChannel. read(ByteBuffer dst)
从该通道读取一个字节序列到给定的缓冲区。abstract int
SocketChannel. read(ByteBuffer dst)
long
SocketChannel. read(ByteBuffer[] dsts)
abstract long
SocketChannel. read(ByteBuffer[] dsts, int offset, int length)
abstract SocketAddress
DatagramChannel. receive(ByteBuffer dst)
通过此通道接收数据报。abstract int
DatagramChannel. send(ByteBuffer src, SocketAddress target)
通过此通道发送数据报。Future<Integer>
AsynchronousByteChannel. write(ByteBuffer src)
从给定缓冲区向该通道写入一个字节序列。<A> void
AsynchronousByteChannel. write(ByteBuffer src, A attachment, CompletionHandler<Integer,? super A> handler)
从给定缓冲区向该通道写入一个字节序列。abstract Future<Integer>
AsynchronousFileChannel. write(ByteBuffer src, long position)
从给定的缓冲区向该通道写入一个字节序列,从给定的文件位置开始。abstract <A> void
AsynchronousFileChannel. write(ByteBuffer src, long position, A attachment, CompletionHandler<Integer,? super A> handler)
从给定的缓冲区向该通道写入一个字节序列,从给定的文件位置开始。abstract Future<Integer>
AsynchronousSocketChannel. write(ByteBuffer src)
abstract <A> void
AsynchronousSocketChannel. write(ByteBuffer[] srcs, int offset, int length, long timeout, TimeUnit unit, A attachment, CompletionHandler<Long,? super A> handler)
从给定缓冲区的子序列向该通道写入一个字节序列。abstract <A> void
AsynchronousSocketChannel. write(ByteBuffer src, long timeout, TimeUnit unit, A attachment, CompletionHandler<Integer,? super A> handler)
从给定缓冲区向该通道写入一个字节序列。<A> void
AsynchronousSocketChannel. write(ByteBuffer src, A attachment, CompletionHandler<Integer,? super A> handler)
abstract int
DatagramChannel. write(ByteBuffer src)
将数据报写入此通道。long
DatagramChannel. write(ByteBuffer[] srcs)
将数据报写入此通道。abstract long
DatagramChannel. write(ByteBuffer[] srcs, int offset, int length)
将数据报写入此通道。abstract int
FileChannel. write(ByteBuffer src)
从给定缓冲区向该通道写入一个字节序列。long
FileChannel. write(ByteBuffer[] srcs)
从给定的缓冲区向该通道写入一个字节序列。abstract long
FileChannel. write(ByteBuffer[] srcs, int offset, int length)
从给定缓冲区的子序列向该通道写入一个字节序列。abstract int
FileChannel. write(ByteBuffer src, long position)
从给定的缓冲区向该通道写入一个字节序列,从给定的文件位置开始。long
GatheringByteChannel. write(ByteBuffer[] srcs)
从给定的缓冲区向该通道写入一个字节序列。long
GatheringByteChannel. write(ByteBuffer[] srcs, int offset, int length)
从给定缓冲区的子序列向该通道写入一个字节序列。int
SeekableByteChannel. write(ByteBuffer src)
从给定缓冲区向该通道写入一个字节序列。abstract int
SocketChannel. write(ByteBuffer src)
long
SocketChannel. write(ByteBuffer[] srcs)
abstract long
SocketChannel. write(ByteBuffer[] srcs, int offset, int length)
int
WritableByteChannel. write(ByteBuffer src)
从给定缓冲区向该通道写入一个字节序列。 -
Uses of ByteBuffer in java.nio.charset
Methods in java.nio.charset that return ByteBuffer 变量和类型 方法 描述 ByteBuffer
Charset. encode(String str)
在此charset中将字符串编码为字节的便捷方法。ByteBuffer
Charset. encode(CharBuffer cb)
在此charset中将Unicode字符编码为字节的便捷方法。ByteBuffer
CharsetEncoder. encode(CharBuffer in)
将单个输入字符缓冲区的剩余内容编码为新分配的字节缓冲区的便捷方法。Methods in java.nio.charset with parameters of type ByteBuffer 变量和类型 方法 描述 CharBuffer
Charset. decode(ByteBuffer bb)
将此charset中的字节解码为Unicode字符的便捷方法。CharBuffer
CharsetDecoder. decode(ByteBuffer in)
将单个输入字节缓冲区的剩余内容解码为新分配的字符缓冲区的便捷方法。CoderResult
CharsetDecoder. decode(ByteBuffer in, CharBuffer out, boolean endOfInput)
从给定的输入缓冲区中解码尽可能多的字节,将结果写入给定的输出缓冲区。protected abstract CoderResult
CharsetDecoder. decodeLoop(ByteBuffer in, CharBuffer out)
将一个或多个字节解码为一个或多个字符。CoderResult
CharsetEncoder. encode(CharBuffer in, ByteBuffer out, boolean endOfInput)
从给定的输入缓冲区中编码尽可能多的字符,将结果写入给定的输出缓冲区。protected abstract CoderResult
CharsetEncoder. encodeLoop(CharBuffer in, ByteBuffer out)
将一个或多个字符编码为一个或多个字节。CoderResult
CharsetEncoder. flush(ByteBuffer out)
刷新此编码器。protected CoderResult
CharsetEncoder. implFlush(ByteBuffer out)
刷新此编码器。 -
Uses of ByteBuffer in java.nio.file.attribute
Methods in java.nio.file.attribute with parameters of type ByteBuffer 变量和类型 方法 描述 int
UserDefinedFileAttributeView. read(String name, ByteBuffer dst)
将用户定义属性的值读入缓冲区。int
UserDefinedFileAttributeView. write(String name, ByteBuffer src)
从缓冲区写入用户定义属性的值。 -
Uses of ByteBuffer in java.security
Methods in java.security with parameters of type ByteBuffer 变量和类型 方法 描述 protected 类<?>
SecureClassLoader. defineClass(String name, ByteBuffer b, CodeSource cs)
将ByteBuffer
转换为类类
的实例,并带有可选的CodeSource。protected void
MessageDigestSpi. engineUpdate(ByteBuffer input)
使用指定的ByteBuffer更新摘要。protected void
SignatureSpi. engineUpdate(ByteBuffer input)
使用指定的ByteBuffer更新要签名或验证的数据。void
MessageDigest. update(ByteBuffer input)
使用指定的ByteBuffer更新摘要。void
Signature. update(ByteBuffer data)
使用指定的ByteBuffer更新要签名或验证的数据。 -
Uses of ByteBuffer in java.util
Methods in java.util that return ByteBuffer 变量和类型 方法 描述 ByteBuffer
Base64.Decoder. decode(ByteBuffer buffer)
使用Base64
编码方案解码输入字节缓冲区中的所有字节,将结果写入新分配的ByteBuffer。ByteBuffer
Base64.Encoder. encode(ByteBuffer buffer)
使用Base64
编码方案将指定字节缓冲区中的所有剩余字节编码为新分配的ByteBuffer。Methods in java.util with parameters of type ByteBuffer 变量和类型 方法 描述 ByteBuffer
Base64.Decoder. decode(ByteBuffer buffer)
使用Base64
编码方案解码输入字节缓冲区中的所有字节,将结果写入新分配的ByteBuffer。ByteBuffer
Base64.Encoder. encode(ByteBuffer buffer)
使用Base64
编码方案将指定字节缓冲区中的所有剩余字节编码为新分配的ByteBuffer。static BitSet
BitSet. valueOf(ByteBuffer bb)
返回一个新的位集,其中包含位置和限制之间给定字节缓冲区中的所有位。 -
Uses of ByteBuffer in java.util.zip
Methods in java.util.zip with parameters of type ByteBuffer 变量和类型 方法 描述 int
Deflater. deflate(ByteBuffer output)
压缩输入数据并使用压缩数据填充指定的缓冲区。int
Deflater. deflate(ByteBuffer output, int flush)
压缩输入数据并使用压缩数据填充指定的缓冲区。int
Inflater. inflate(ByteBuffer output)
将字节解压缩到指定的缓冲区。void
Deflater. setDictionary(ByteBuffer dictionary)
设置压缩的预设字典。void
Inflater. setDictionary(ByteBuffer dictionary)
将预设字典设置为给定缓冲区中的字节。void
Deflater. setInput(ByteBuffer input)
设置压缩的输入数据。void
Inflater. setInput(ByteBuffer input)
设置解压缩的输入数据。void
Adler32. update(ByteBuffer buffer)
使用指定缓冲区中的字节更新校验和。default void
Checksum. update(ByteBuffer buffer)
使用指定缓冲区中的字节更新当前校验和。void
CRC32. update(ByteBuffer buffer)
使用指定缓冲区中的字节更新CRC-32校验和。void
CRC32C. update(ByteBuffer buffer)
使用指定缓冲区中的字节更新CRC-32C校验和。 -
Uses of ByteBuffer in javax.crypto
Methods in javax.crypto with parameters of type ByteBuffer 变量和类型 方法 描述 int
Cipher. doFinal(ByteBuffer input, ByteBuffer output)
在单部分操作中加密或解密数据,或完成多部分操作。protected int
CipherSpi. engineDoFinal(ByteBuffer input, ByteBuffer output)
在单部分操作中加密或解密数据,或完成多部分操作。protected int
CipherSpi. engineUpdate(ByteBuffer input, ByteBuffer output)
继续多部分加密或解密操作(取决于此密码的初始化方式),处理另一个数据部分。protected void
MacSpi. engineUpdate(ByteBuffer input)
处理input.remaining()
在ByteBuffer的字节input
,起始于input.position()
。protected void
CipherSpi. engineUpdateAAD(ByteBuffer src)
继续进行附加认证数据(AAD)的多部分更新。int
Cipher. update(ByteBuffer input, ByteBuffer output)
继续多部分加密或解密操作(取决于此密码的初始化方式),处理另一个数据部分。void
Mac. update(ByteBuffer input)
处理input.remaining()
在ByteBuffer的字节input
,起始于input.position()
。void
Cipher. updateAAD(ByteBuffer src)
继续进行附加认证数据(AAD)的多部分更新。 -
Uses of ByteBuffer in javax.net.ssl
Methods in javax.net.ssl with parameters of type ByteBuffer 变量和类型 方法 描述 SSLEngineResult
SSLEngine. unwrap(ByteBuffer src, ByteBuffer dst)
尝试将SSL / TLS / DTLS网络数据解码为纯文本应用程序数据缓冲区。SSLEngineResult
SSLEngine. unwrap(ByteBuffer src, ByteBuffer[] dsts)
尝试将SSL / TLS / DTLS网络数据解码为一系列明文应用程序数据缓冲区。abstract SSLEngineResult
SSLEngine. unwrap(ByteBuffer src, ByteBuffer[] dsts, int offset, int length)
尝试将SSL / TLS / DTLS网络数据解码为明文应用程序数据缓冲区的子序列。abstract SSLEngineResult
SSLEngine. wrap(ByteBuffer[] srcs, int offset, int length, ByteBuffer dst)
尝试将明文字节从数据缓冲区的子序列编码为SSL / TLS / DTLS网络数据。SSLEngineResult
SSLEngine. wrap(ByteBuffer[] srcs, ByteBuffer dst)
尝试将明文字节从一系列数据缓冲区编码为SSL / TLS / DTLS网络数据。SSLEngineResult
SSLEngine. wrap(ByteBuffer src, ByteBuffer dst)
尝试将明文应用程序数据缓冲区编码为SSL / TLS / DTLS网络数据。 -
Uses of ByteBuffer in javax.smartcardio
Methods in javax.smartcardio with parameters of type ByteBuffer 变量和类型 方法 描述 abstract int
CardChannel. transmit(ByteBuffer command, ByteBuffer response)
传输存储在命令ByteBuffer中的命令APDU,并在响应ByteBuffer中接收响应APDU。Constructors in javax.smartcardio with parameters of type ByteBuffer 构造器 描述 CommandAPDU(ByteBuffer apdu)
从ByteBuffer创建包含完整APDU内容(标题和正文)的CommandAPDU。 -
Uses of ByteBuffer in jdk.nashorn.api.scripting
Methods in jdk.nashorn.api.scripting with parameters of type ByteBuffer 变量和类型 方法 描述 void
ScriptObjectMirror. setIndexedPropertiesToExternalArrayData(ByteBuffer buf)
不推荐使用,要删除:此API元素将在以后的版本中删除。Nashorn扩展:setIndexedPropertiesToExternalArrayData。
-