Skip to content
New issue

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

增加一个文件切割工具 FileSplitUtils #653

Open
wants to merge 2 commits into
base: master
from

Conversation

@UFreedom
Copy link

@UFreedom UFreedom commented Sep 29, 2018

可以将一个文件按照期望的个数或者大小去切割


private static List<File> splitFileInner(File destDir, File srcFile, long sourceSize, long bytesPerSplit, long numSplits) throws IOException {
List<File> partFiles = new ArrayList<>();
final long remainingBytes = sourceSize % bytesPerSplit;

This comment has been minimized.

@MrHeer

MrHeer Sep 24, 2019

是不是这样可读性更强?

Suggested change
final long remainingBytes = sourceSize % bytesPerSplit;
final long remainingBytes = sourceSize - bytesPerSplit * numSplits;
Copy link

@amirabbaska amirabbaska left a comment

👌

@Anitaislam
Copy link

@Anitaislam Anitaislam commented Jun 9, 2020

:Master

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked issues

Successfully merging this pull request may close these issues.

None yet

4 participants
You can’t perform that action at this time.