Split and join back a binary file in java

后端 未结 7 838
闹比i
闹比i 2020-12-13 10:45

I am trying to divide a binary file (like video/audio/image) into chunks of 100kb each and then join those chunks back to get back the original file. My code seems to be wor

7条回答
  •  一个人的身影
    2020-12-13 11:04

    Are there more than 10 chunks? Then the program will concatenate *.part1 + *.part10 + *.part2 and so on.

提交回复
热议问题