Java语言程序设计基础篇_编程练习题*17.10 (分割文件)

目录

题目:*17.10 (分割文件)

代码示例 

输出结果


题目:*17.10 (分割文件)

  假设希望在 CD-R 上备份一个大文件(例如,一个 10GB 的 AVI文件)。可以将该文件分割为几个小一些的片段,然后独立备份这些小片段。编写一个工具程序,使用下面的命令将一个大文件分割为小一些的文件:

java Exercisel7_10 SourceFile numberOfPieces

这个命令创建文件 SourceFile.1, SourceFile.2, •••, SourceFile.n, 这里的n是 numberOfPieces 而输出文件的大小基本相同。 

  • 代码示例 

编程练习题17_10splitFile.java

package chapter_17;

import java.io.DataOutputStream;  
import java.io.File;  
import java.io.FileOutputStream;  
import java.io.IOException;  
import java.io.RandomAccessFile;  
  
public class 编程练习题17_10splitFile {  
    public static void main(String[] args) throws IOException {  
        if (args.length != 2) {  
            System.out.println("Usage: java 编程练习题17_10splitFile <inputFile> <numberOfParts>");  
            System.exit(1);  
        }  
  
        File file = new File(args[0]);  
        int num = Integer.parseInt(args[1]);  
  
        try (RandomAccessFile raf = new RandomAccessFile(file, "r")) {  
            long allLength = raf.length();  
            long splitLength = (allLength + num - 1) / num; // 确保最后一个文件也能包含剩余内容  
            byte[] buffer = new byte[(int) Math.min(splitLength, Integer.MAX_VALUE)];  
  
            int fileIndex = 1;  
            int bytesRead;  
  
            while ((bytesRead = raf.read(buffer)) != -1) {  
                try (DataOutputStream output = new DataOutputStream(new FileOutputStream("Text/Exercise17_10_" + fileIndex + ".txt"))) {  
                    output.write(buffer, 0, bytesRead); // 写入实际读取的字节数  
                }  
                fileIndex++;  
            }  
        }  
    }  
}
  • 输出结果

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值