You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If len is zero, then no bytes are read and 0 is returned
RemoteFileInputStream has no special handling and sends request to read zero bytes to remote server. This is bad from performance perspective, also some SFTP servers reject such request.
The text was updated successfully, but these errors were encountered:
InputStream#read specification in JDK states that
If len is zero, then no bytes are read and 0 is returned
RemoteFileInputStream has no special handling and sends request to read zero bytes to remote server. This is bad from performance perspective, also some SFTP servers reject such request.
The text was updated successfully, but these errors were encountered: