Uses of Interface
org.aoju.bus.core.io.StreamProgress
Packages that use StreamProgress
Package
Description
IO流拷贝相关封装相关封装
工具包,提供各种工具方法,按照归类入口为XXXKit,如数组工具ArrayKit等
-
Uses of StreamProgress in org.aoju.bus.core.io.copier
Fields in org.aoju.bus.core.io.copier declared as StreamProgressConstructors in org.aoju.bus.core.io.copier with parameters of type StreamProgressModifierConstructorDescriptionChannelCopier(int bufferSize, long count, StreamProgress progress) 构造IoCopier(int bufferSize, long count, StreamProgress progress) 构造ReaderWriterCopier(int bufferSize, long count, StreamProgress progress) 构造StreamCopier(int bufferSize, long count, StreamProgress progress) 构造 -
Uses of StreamProgress in org.aoju.bus.core.toolkit
Methods in org.aoju.bus.core.toolkit with parameters of type StreamProgressModifier and TypeMethodDescriptionstatic longIoKit.copy(InputStream in, OutputStream out, int bufferSize, int count, StreamProgress streamProgress) 拷贝流,拷贝后不关闭流static longIoKit.copy(InputStream in, OutputStream out, int bufferSize, long count, StreamProgress streamProgress) 拷贝流,本方法不会关闭流static longIoKit.copy(InputStream in, OutputStream out, int bufferSize, StreamProgress streamProgress) 拷贝流static longIoKit.copy(Reader reader, Writer writer, int bufferSize, long count, StreamProgress streamProgress) 将Reader中的内容复制到Writer中,拷贝后不关闭Readerstatic longIoKit.copy(Reader reader, Writer writer, int bufferSize, StreamProgress streamProgress) 将Reader中的内容复制到Writer中,拷贝后不关闭Readerstatic longIoKit.copy(ReadableByteChannel in, WritableByteChannel out, int bufferSize, long count, StreamProgress streamProgress) 拷贝流,使用NIO,不会关闭channelstatic longIoKit.copy(ReadableByteChannel in, WritableByteChannel out, int bufferSize, StreamProgress streamProgress) 拷贝流,使用NIO,不会关闭channel