Uses of Class
java.nio.ByteBuffer
-
Packages that use ByteBuffer 软件包 描述 com.sun.nio.sctp 用于流控制传输协议的Java API。java.lang 提供对Java编程语言设计至关重要的类。java.lang.module 通过分辨率和服务绑定来支持模块描述符和创建模块配置的类。java.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文件格式的类。javafx.scene.image 提供加载和显示图像的一组类。javax.crypto 提供加密操作的类和接口。javax.net.ssl 为安全套接字包提供类。javax.smartcardio Java™智能卡I / O APIjdk.incubator.http 高级HTTP和WebSocket APIjdk.nashorn.api.scripting 这个包提供了javax.script
集成,这是使用Nashorn的首选方式。 -
-
Uses of ByteBuffer in com.sun.nio.sctp
Methods in com.sun.nio.sctp that return ByteBuffer Modifier and Type 方法 描述 abstract ByteBuffer
SendFailedNotification. buffer()
返回要发送的数据。Methods in com.sun.nio.sctp with parameters of type ByteBuffer Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 protected Class<?>
ClassLoader. defineClass(String name, ByteBuffer b, ProtectionDomain protectionDomain)
一个转换ByteBuffer
成类的实例Class
,与给定ProtectionDomain
。 -
Uses of ByteBuffer in java.lang.module
Methods in java.lang.module that return types with arguments of type ByteBuffer Modifier and Type 方法 描述 default Optional<ByteBuffer>
ModuleReader. read(String name)
读取资源,返回一个具有资源内容的字节缓冲区。Methods in java.lang.module with parameters of type ByteBuffer Modifier and Type 方法 描述 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.nio
Subclasses of ByteBuffer in java.nio Modifier and Type Class 描述 class
MappedByteBuffer
直接字节缓冲器,其内容是文件的存储器映射区域。Methods in java.nio that return ByteBuffer Modifier and Type 方法 描述 ByteBuffer
ByteBuffer. alignedSlice(int unitSize)
创建一个新的字节缓冲区,其内容是此缓冲区内容的共享和对齐子序列。static ByteBuffer
ByteBuffer. allocate(int capacity)
分配一个新的字节缓冲区。static ByteBuffer
ByteBuffer. allocateDirect(int capacity)
分配一个新的直接字节缓冲区。abstract ByteBuffer
ByteBuffer. asReadOnlyBuffer()
创建一个新的只读字节缓冲区,共享此缓冲区的内容。ByteBuffer
ByteBuffer. clear()
清除此缓冲区。abstract ByteBuffer
ByteBuffer. compact()
压缩此缓冲区 (可选操作) 。abstract ByteBuffer
ByteBuffer. duplicate()
创建一个新的字节缓冲区,共享此缓冲区的内容。ByteBuffer
ByteBuffer. flip()
翻转这个缓冲区。ByteBuffer
ByteBuffer. get(byte[] dst)
相对批量 获取方法。ByteBuffer
ByteBuffer. get(byte[] dst, int offset, int length)
相对批量 获取方法。ByteBuffer
ByteBuffer. limit(int newLimit)
设置此缓冲区的限制。ByteBuffer
ByteBuffer. mark()
将此缓冲区的标记设置在其位置。ByteBuffer
ByteBuffer. order(ByteOrder bo)
修改缓冲区的字节顺序。ByteBuffer
ByteBuffer. position(int newPosition)
设置这个缓冲区的位置。abstract ByteBuffer
ByteBuffer. put(byte b)
相对 放置法 (可选操作) 。ByteBuffer
ByteBuffer. put(byte[] src)
相对大容量 put方法 (可选操作) 。ByteBuffer
ByteBuffer. put(byte[] src, int offset, int length)
相对大容量 put方法 (可选操作) 。abstract ByteBuffer
ByteBuffer. put(int index, byte b)
绝对 put方法 (可选操作) 。ByteBuffer
ByteBuffer. put(ByteBuffer src)
相对大容量 put方法 (可选操作) 。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)
用于写入双精度值的绝对 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)
写入一个短值的相对 放置方法 (可选操作) 。ByteBuffer
ByteBuffer. reset()
将此缓冲区的位置重置为先前标记的位置。ByteBuffer
ByteBuffer. rewind()
倒带这个缓冲区。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 Modifier and Type 方法 描述 int
ByteBuffer. compareTo(ByteBuffer that)
将此缓冲区与另一个缓冲区进ByteBuffer
ByteBuffer. put(ByteBuffer src)
相对大容量 put方法 (可选操作) 。 -
Uses of ByteBuffer in java.nio.channels
Methods in java.nio.channels with parameters of type ByteBuffer Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 ByteBuffer
Charset. encode(String str)
在此字符集中将字符串编码为字节的便捷方法。ByteBuffer
Charset. encode(CharBuffer cb)
在这个字符集中将Unicode字符编码为字节的便捷方法。ByteBuffer
CharsetEncoder. encode(CharBuffer in)
便捷方法,将单个输入字符缓冲区的剩余内容编码到新分配的字节缓冲区中。Methods in java.nio.charset with parameters of type ByteBuffer Modifier and Type 方法 描述 CharBuffer
Charset. decode(ByteBuffer bb)
便利方法,将此字符集中的字节解码为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 Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 protected Class<?>
SecureClassLoader. defineClass(String name, ByteBuffer b, CodeSource cs)
一个转换ByteBuffer
成类的实例Class
,使用可选的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 Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 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 javafx.scene.image
Methods in javafx.scene.image that return types with arguments of type ByteBuffer Modifier and Type 方法 描述 static PixelFormat<ByteBuffer>
PixelFormat. createByteIndexedInstance(int[] colors)
创建描述像素布局的PixelFormat
实例,其中像素存储为单字节,表示索引到INT_ARGB
格式的 非预乘颜色值的指定查找表中。static PixelFormat<ByteBuffer>
PixelFormat. createByteIndexedPremultipliedInstance(int[] colors)
static WritablePixelFormat<ByteBuffer>
PixelFormat. getByteBgraInstance()
返回描述像素布局的WritablePixelFormat
实例,其中存储在相邻字节中的像素与 非预乘数组件以增加的索引:蓝色,绿色,红色,alpha的顺序存储。static WritablePixelFormat<ByteBuffer>
PixelFormat. getByteBgraPreInstance()
返回描述像素布局的WritablePixelFormat
实例,其中存储在相邻字节中的像素,其中 预乘数组件按照增加索引的顺序存储:蓝色,绿色,红色,alpha。static PixelFormat<ByteBuffer>
PixelFormat. getByteRgbInstance()
返回描述像素布局的PixelFormat
实例,其中存储在相邻字节中的像素的颜色分量按照增加的索引顺序存储:红,绿,蓝。Method parameters in javafx.scene.image with type arguments of type ByteBuffer Modifier and Type 方法 描述 void
PixelReader. getPixels(int x, int y, int w, int h, WritablePixelFormat<ByteBuffer> pixelformat, byte[] buffer, int offset, int scanlineStride)
将像素数据从表面的矩形区域读入指定的字节数组。void
PixelWriter. setPixels(int x, int y, int w, int h, PixelFormat<ByteBuffer> pixelformat, byte[] buffer, int offset, int scanlineStride)
将来自字节数组的像素数据存储到表面的矩形区域中。 -
Uses of ByteBuffer in javax.crypto
Methods in javax.crypto with parameters of type ByteBuffer Modifier and Type 方法 描述 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()
字节的ByteBufferinput
,从input.position()
开始。protected void
CipherSpi. engineUpdateAAD(ByteBuffer src)
继续进行附加认证数据(AAD)的多部分更新。int
Cipher. update(ByteBuffer input, ByteBuffer output)
继续进行多部分加密或解密操作(取决于如何初始化该密码),处理另一个数据部分。void
Mac. update(ByteBuffer input)
处理input.remaining()
字节的ByteBufferinput
,从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 Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 abstract int
CardChannel. transmit(ByteBuffer command, ByteBuffer response)
发送存储在命令ByteBuffer中的命令APDU,并在响应ByteBuffer中接收响应APDU。Constructors in javax.smartcardio with parameters of type ByteBuffer Constructor 描述 CommandAPDU(ByteBuffer apdu)
从包含完整的APDU内容(标题和正文)的ByteBuffer创建一个CommandAPDU。 -
Uses of ByteBuffer in jdk.incubator.http
Methods in jdk.incubator.http with parameters of type ByteBuffer Modifier and Type 方法 描述 default CompletionStage<?>
WebSocket.Listener. onBinary(WebSocket webSocket, ByteBuffer message, WebSocket.MessagePart part)
接收二进制消息。default CompletionStage<?>
WebSocket.Listener. onPing(WebSocket webSocket, ByteBuffer message)
接收Ping消息。default CompletionStage<?>
WebSocket.Listener. onPong(WebSocket webSocket, ByteBuffer message)
收到乒乓消息。CompletableFuture<WebSocket>
WebSocket. sendBinary(ByteBuffer message, boolean isLast)
从给定的ByteBuffer
发送带有字节的二进制消息。CompletableFuture<WebSocket>
WebSocket. sendPing(ByteBuffer message)
从给定的ByteBuffer发送带有字节的Ping消息。CompletableFuture<WebSocket>
WebSocket. sendPong(ByteBuffer message)
从给定的ByteBuffer发送带有字节的Pong消息。 -
Uses of ByteBuffer in jdk.nashorn.api.scripting
Methods in jdk.nashorn.api.scripting with parameters of type ByteBuffer Modifier and Type 方法 描述 void
ScriptObjectMirror. setIndexedPropertiesToExternalArrayData(ByteBuffer buf)
Nashorn扩展名:setIndexedPropertiesToExternalArrayData。
-