We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
源代码有一个bug 在 FileUtill类 writeFile方法中,最后 fileBurstInstruct.setReadPosition(fileBurstData.getEndPos() + 1); 应该修改为 fileBurstInstruct.setReadPosition(fileBurstData.getEndPos()); 否则传输的文件和源文件的hash值不一致(应该是位置错了)
The text was updated successfully, but these errors were encountered:
同样遇到了这个问题,解决方法就是 @zzmmff 提供的。
Sorry, something went wrong.
No branches or pull requests
源代码有一个bug
在 FileUtill类 writeFile方法中,最后 fileBurstInstruct.setReadPosition(fileBurstData.getEndPos() + 1); 应该修改为
fileBurstInstruct.setReadPosition(fileBurstData.getEndPos());
否则传输的文件和源文件的hash值不一致(应该是位置错了)
The text was updated successfully, but these errors were encountered: