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
Choose a base branch
from

Conversation

UFreedom
Copy link

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


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;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

是不是这样可读性更强?

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

Copy link

@amirabbaska amirabbaska left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👌

@Anitaislam
Copy link

:Master

@Anitaislam
Copy link

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

Successfully merging this pull request may close these issues.

None yet

4 participants