JAVA 학습 제55과 - IO 흐름 (9) 파일 절단기
private static final int SIZE = 1024 *1024;
public static void splitFile(File file) throws IOException{
// ( )
FileInputStream fis = new FileInputStream(file);//
byte[] by = new byte[SIZE];// 1M
FileOutputStream fos = null;//
int len = 0;
int count = 1;//
File dir = new File("D:\\patFiles");
if(!dir.isFile()){
dir.mkdirs();
}
while((len = fis.read(by))!=-1){
fos = new FileOutputStream(new File(dir,(count++)+".part"));//
fos.write(by,0,len);
}
fos.close();
fis.close();
}
파일 병합
public static void main(String[] args) throws IOException {
File file = new File("D:\\PartFile");
Merge(file);
}
public static void Merge(File dir)throws IOException{
ArrayList<FileInputStream> AL = new ArrayList<FileInputStream>();
for(int i = 1;i<=7;i++){
AL.add(new FileInputStream(new File(dir,i+".part")));
}
Enumeration<FileInputStream> en = Collections.enumeration(AL);
SequenceInputStream sis = new SequenceInputStream(en);
FileOutputStream fos = new FileOutputStream(new File(dir," .mp3"));
byte[] by = new byte[1024];
int len = 0;
while((len = sis.read(by))!=-1){
fos.write(by, 0, len);
}
sis.close();
fos.close();
}
파일 가공 결합 + 구성 파일
import java.io.*;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Enumeration;
import java.util.Properties;
public class Main
{
private static final int SIZE = 1024 *1024;
public static void main(String[] args) throws IOException {
File file1 = new File("d:\\NeedSplit\\ .mp3");
File file2 = new File("D:\\PartFiles");
splitFile(file1);
Merge_1(file2);
}
public static void splitFile(File file) throws IOException{
// ( )
FileInputStream fis = new FileInputStream(file);//
byte[] by = new byte[SIZE];// 1M
FileOutputStream fos = null;//
int len = 0;
int count = 1;//
/* ,
* , , Properties */
Properties pro = new Properties();
File dir = new File("D:\\PartFiles");
if(!dir.isFile()){
dir.mkdirs();
}
while((len = fis.read(by))!=-1){
fos = new FileOutputStream(new File(dir,(count++)+".part"));//
fos.write(by,0,len);
fos.close();
}
// pro
pro.setProperty("partCount", count+"");
pro.setProperty("fileName", file.getName());
fos = new FileOutputStream(new File(dir,count+".properties"));
// pro
pro.store(fos, "save file infmation");
fis.close();
}
public static void Merge_1(File dir)throws IOException{
//
File[] files = dir.listFiles(new SuffixFilter(".properties"));//new
if(files.length!=1){
throw new RuntimeException(dir+" properties ");
}
//
File confile = files[0];
//
Properties pro = new Properties();
FileInputStream fis = new FileInputStream(confile);//
pro.load(fis);//
String filename = pro.getProperty("fileName");//
int count = Integer.parseInt(pro.getProperty("partCount"));//
//
// ,
File[] partFiles = dir.listFiles(new SuffixFilter(".part"));
if(partFiles.length!=(count-1)){
throw new RuntimeException(" , "+count+" !");
}
// ,
ArrayList<FileInputStream> AL = new ArrayList<FileInputStream>();
for(int i = 0;i<partFiles.length;i++){
AL.add(new FileInputStream(partFiles[i]));
}
//
Enumeration<FileInputStream> en = Collections.enumeration(AL);
SequenceInputStream sis = new SequenceInputStream(en);
//
FileOutputStream fos = new FileOutputStream(new File(dir,filename));
byte[] by = new byte[1024];
int len = 0;
while((len = sis.read(by))!=-1){
fos.write(by, 0, len);
}
sis.close();
fos.close();
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.