Uses of Interface
org.miaixz.bus.core.io.StreamProgress
Packages that use StreamProgress
Package
Description
IO流拷贝相关封装相关封装
InputStream和OutputStream相关方法和类封装
提供各种工具封装
xyz:做好一切必要准备,可以行动了
-
Uses of StreamProgress in org.miaixz.bus.core.io.copier
Fields in org.miaixz.bus.core.io.copier declared as StreamProgressConstructors in org.miaixz.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.miaixz.bus.core.io.stream
Methods in org.miaixz.bus.core.io.stream with parameters of type StreamProgressModifier and TypeMethodDescriptionlongSyncInputStream.copyTo(OutputStream out, StreamProgress streamProgress) 将流的内容拷贝到输出流 -
Uses of StreamProgress in org.miaixz.bus.core.xyz
Methods in org.miaixz.bus.core.xyz with parameters of type StreamProgressModifier and TypeMethodDescriptionstatic 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.copyNio(InputStream in, OutputStream out, int bufferSize, long count, StreamProgress streamProgress) 拷贝流 本方法不会关闭流static longIoKit.copyNio(InputStream in, OutputStream out, int bufferSize, StreamProgress streamProgress) 拷贝流 thanks to: https://github.com/venusdrogon/feilong-io/blob/master/src/main/java/com/feilong/io/IOWriteUtil.java 本方法不会关闭流static longIoKit.copyNio(ReadableByteChannel in, WritableByteChannel out, int bufferSize, long count, StreamProgress streamProgress) 拷贝流,使用NIO,不会关闭channelstatic longIoKit.copyNio(ReadableByteChannel in, WritableByteChannel out, int bufferSize, StreamProgress streamProgress) 拷贝流,使用NIO,不会关闭channel