Java中切割大文件的方法有多種,以下是其中一種常見的方法:
打開需要切割的源文件和目標(biāo)文件,可以使用RandomAccessFile類進(jìn)行操作。
使用read()方法從源文件中讀取指定大小的數(shù)據(jù)塊。
使用write()方法將讀取的數(shù)據(jù)塊寫入目標(biāo)文件中。
重復(fù)以上步驟直到源文件讀取完畢。
關(guān)閉文件流。
示例代碼如下:
import java.io.*;
public class FileSplitter {
public static void splitFile(String sourceFile, String targetDir, int chunkSize) {
try (RandomAccessFile source = new RandomAccessFile(sourceFile, "r")) {
byte[] buffer = new byte[chunkSize];
int bytesRead;
int chunkCount = 0;
while ((bytesRead = source.read(buffer)) != -1) {
String fileName = targetDir + File.separator + "chunk" + chunkCount;
try (RandomAccessFile target = new RandomAccessFile(fileName, "rw")) {
target.write(buffer, 0, bytesRead);
}
chunkCount++;
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
調(diào)用示例:
public class Main {
public static void main(String[] args) {
String sourceFile = "path/to/source/file";
String targetDir = "path/to/target/directory";
int chunkSize = 1024; // 指定每個切割文件的大小,單位為字節(jié)
FileSplitter.splitFile(sourceFile, targetDir, chunkSize);
}
}
以上代碼會將源文件按指定大小切割成多個文件,并保存到目標(biāo)目錄中。每個切割文件的命名為"chunk0"、"chunk1"等。