Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は4Gbのファイルを持っています。
path = "D:\Try\FourGBFile.txt"
言う、
File file = new File(path);
このファイルの内容を 4 つのファイルに分割します。どうすればいいですか?
ファイルの長さを取得します。
long len = file.length();
FileInputStreamソースファイルを開く
FileInputStream
FileOutputStream必要なだけ開く
FileOutputStream
ファイルの長さを使用して、入力ストリームから読み取り、それぞれの出力ストリームに書き込むことにより、ファイルの各部分を書き込みます