Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeffreymorganio/size-input-stream
A java.io.InputStream subclass that enables progress monitoring when the number of bytes to be read cannot be determined.
https://github.com/jeffreymorganio/size-input-stream
Last synced: 6 days ago
JSON representation
A java.io.InputStream subclass that enables progress monitoring when the number of bytes to be read cannot be determined.
- Host: GitHub
- URL: https://github.com/jeffreymorganio/size-input-stream
- Owner: jeffreymorganio
- License: mit
- Created: 2014-07-17T06:51:12.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-17T07:11:14.000Z (over 10 years ago)
- Last Synced: 2023-03-22T19:55:54.241Z (almost 2 years ago)
- Language: Java
- Homepage:
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Size-Input-Stream
=================A java.io.InputStream subclass that enables progress monitoring when the number of bytes to be read cannot be determined.
About
-----Progress bars provide visual feedback on the progress of lengthy tasks, such as reading a stream of bytes stored in a file. In some cases, Java progress monitors cannot be used because the number of bytes that remain to be read is not available from the InputStream object that the bytes are read from. The SizeInputStream class enables reading progress to be monitored when the number of bytes to be read can be determined from sources other than an InputStream object, such as from a URLConnection object.
More Information
----------------For more information, please read [Monitoring Progress with Size Input Streams](http://usabilityetc.com/articles/size-input-streams/).