큰 파일 을 작은 파일 로 분해 자바
2604 단어 자바 기반
package zx.tools;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
public class FileSpiliter {
/**
*
* @param rows
* @param sourceFilePath
* @param targetDirectoryPath
*/
public static void splitDataToSaveFile(int rows, String sourceFilePath,
String targetDirectoryPath) {
long start1 = System.currentTimeMillis();
File sourceFile = new File(sourceFilePath);
File targetFile = new File(targetDirectoryPath);
if (!sourceFile.exists() || rows <= 0 || sourceFile.isDirectory()) {
return;
}
if (targetFile.exists()) {
if (!targetFile.isDirectory()) {
return;
}
} else {
targetFile.mkdirs();
}
try {
InputStreamReader in = new InputStreamReader(new FileInputStream(sourceFilePath),"UTF-8");
BufferedReader br=new BufferedReader(in);
BufferedWriter bw = null;
StringBuilder str = new StringBuilder();
String tempData = br.readLine();
int i = 1, s = 0;
long start2 = System.currentTimeMillis();
while (tempData != null) {
str.append(tempData + "\r
");
if (i % rows == 0) {
bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(
targetFile.getAbsolutePath() + "/" + sourceFile.getName() +"_" + (s+1) +".log"), "UTF-8"),1024);
bw.write(str.toString());
bw.close();
str = new StringBuilder();
start2 = System.currentTimeMillis();
s += 1;
}
i++;
tempData = br.readLine();
}
if ((i - 1) % rows != 0) {
bw = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(
targetFile.getAbsolutePath() + "/" + sourceFile.getName() +"_" + (s+1) +".log"), "UTF-8"),1024);
bw.write(str.toString());
bw.close();
br.close();
s += 1;
}
in.close();
} catch (Exception e) {
}
}
public static void main(String[] args) {
FileSpiliter.splitDataToSaveFile(100000, "D:/log/out.log-20180927_10.33.100.168", "D:/log/out.log-20180927/");
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
범용 용법 예시앞으로 51CTO 에 정착 해 기술 개발 에 전념 할 테 니 잘 부탁드립니다.다음 코드 는 자신 이 (저자: 이 흥 화) 를 공부 할 때 두 드 린 코드 로 주석 이 완비 되 어 있다. 범용 클래스 Point. ja...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.