Uses of Interface
org.aoju.bus.core.io.Source
Packages that use Source
Package
Description
IO相关封装和工具类,包括Inputstream和OutputStream实现类和Buffer处理等
工具包,提供各种工具方法,按照归类入口为XXXKit,如数组工具ArrayKit等
-
Uses of Source in org.aoju.bus.core.io
Subinterfaces of Source in org.aoju.bus.core.ioModifier and TypeInterfaceDescriptioninterface内部保存一个缓冲区,以便调用者可以在没有性能的情况下进行少量读取 它还允许客户端提前读取,在消费之前进行必要的缓冲输入Classes in org.aoju.bus.core.io that implement SourceModifier and TypeClassDescriptionclass内存中字节的集合.class将调用转发给另一个调用的Sourcefinal class解压读取数据final class计算其提供的全部字节流的散列的源 若要使用,请创建 使用您首选的哈希算法实例 通过读取源文件的所有字节来耗尽源文件 然后调用HashSource.hash()来计算最终的哈希值final class解压从另一个源读取的数据final classFields in org.aoju.bus.core.io declared as SourceMethods in org.aoju.bus.core.io that return SourceModifier and TypeMethodDescriptionfinal SourceDelegateSource.delegate()final SourcePipe.source()Methods in org.aoju.bus.core.io with parameters of type SourceModifier and TypeMethodDescriptionstatic HashSourceHashSource.hmacSha1(Source source, ByteString key) static HashSourceHashSource.hmacSha256(Source source, ByteString key) static HashSourcestatic HashSourcestatic HashSourcefinal SourcelonglonglongConstructors in org.aoju.bus.core.io with parameters of type SourceModifierConstructorDescriptionDelegateSource(Source delegate) GzipSource(Source source) InflaterSource(Source source, Inflater inflater) RealSource(Source source) -
Uses of Source in org.aoju.bus.core.toolkit
Methods in org.aoju.bus.core.toolkit that return SourceModifier and TypeMethodDescriptionstatic Source返回从file读取的缓冲数据static SourceIoKit.source(InputStream in) 返回从in中读取的缓冲数据static Source返回从socket读取的缓存信息。与IoKit.source(InputStream)相比, 更喜欢这个方法, 因为这个方法支持超时。当套接字读取超时时,套接字将由任务线程异步关闭static SourceIoKit.source(Path path, OpenOption... options) 返回从path读取的缓冲数据Methods in org.aoju.bus.core.toolkit with parameters of type Source