자바 파일 압축 파일 화해 파일 구현
서류 의 압축 파일
package cn.yimen.archiver;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
/**
*
*/
public class Archiver {
public static void main(String[] args) throws Exception {
//
FileOutputStream fos = new FileOutputStream("d:/arch/x.xar");
fos.write(addFile("D:/arch/a.xls"));
fos.write(addFile("D:/arch/b.xml"));
fos.write(addFile("D:/arch/c.jpg"));
fos.close();
//
}
/**
* path : d:/xxx/xxx/a.jpg
* @throws Exception
*/
public static byte[] addFile(String path) throws Exception{
//
File f = new File(path);
//
String fname = f.getName();
//
byte[] fnameBytes = fname.getBytes() ;
//
int len = (int)f.length();
// + + +
int total = 4 + fnameBytes.length + 4 + len ;
//
byte[] bytes = new byte[total];
//1.
byte[] fnameLenArr = Util.int2Bytes(fnameBytes.length);
System.arraycopy(fnameLenArr, 0, bytes, 0, 4);
//2.
System.arraycopy(fnameBytes, 0, bytes, 4, fnameBytes.length);
//3.
byte[] fcontentLenArr = Util.int2Bytes(len);
System.arraycopy(fcontentLenArr, 0, bytes, 4 + fnameBytes.length, 4);
//4.
//
ByteArrayOutputStream baos = new ByteArrayOutputStream();
FileInputStream fis = new FileInputStream(f);
byte[] buf = new byte[1024];
int len0 = 0 ;
while((len0 = fis.read(buf)) != -1){
baos.write(buf, 0, len0);
}
fis.close();
//
byte[] fileContentArr = baos.toByteArray();
System.arraycopy(fileContentArr, 0, bytes, 4 + fnameBytes.length + 4, fileContentArr.length);
return bytes ;
}
}
파일 의 압축 해제
package cn.yimen.archiver;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.ArrayList;
import java.util.List;
/**
*
*/
public class Unarchiver {
public static void main(String[] args) throws Exception {
List<FileBean> files = new ArrayList<FileBean>();
//
FileInputStream fis = new FileInputStream("d:/arch/x.xar");
FileBean fileBean = null ;
//
while((fileBean = readNextFile(fis)) != null){
files.add(fileBean);
}
//
fis.close();
FileOutputStream fos = null ;
//
for(FileBean fb : files){
fos = new FileOutputStream("d:/arch/unarch/" + fb.getFileName());
fos.write(fb.getFileContent());
fos.close();
}
}
/**
*
*/
public static FileBean readNextFile(FileInputStream fis) throws Exception{
//
byte[] bytes4 = new byte[4];
//
int res = fis.read(bytes4);
if(res == -1){
return null ;
}
//
int fnameLen = Util.bytes2Int(bytes4);
//
byte[] fileNameBytes = new byte[fnameLen];
fis.read(fileNameBytes);
//
String fname = new String(fileNameBytes);
// 4 ,
fis.read(bytes4);
int fileContLen = Util.bytes2Int(bytes4);
//
byte[] fileContBytes = new byte[fileContLen];
fis.read(fileContBytes);
return new FileBean(fname,fileContBytes);
}
}
package cn.yimen.archiver;
/**
* Bean
*/
public class FileBean {
private String fileName;
private byte[] fileContent;
public FileBean() {
}
public FileBean(String fname, byte[] fileContBytes) {
this.fileName = fname ;
this.fileContent = fileContBytes ;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public byte[] getFileContent() {
return fileContent;
}
public void setFileContent(byte[] fileContent) {
this.fileContent = fileContent;
}
}
도구 클래스
package cn.yimen.archiver;
public class Util {
/**
*
*/
public static byte[] int2Bytes(int i){
byte[] arr = new byte[4] ;
arr[0] = (byte)i ;
arr[1] = (byte)(i >> 8) ;
arr[2] = (byte)(i >> 16) ;
arr[3] = (byte)(i >> 24) ;
return arr ;
}
/**
* int
*/
public static int bytes2Int(byte[] bytes){
int i0= bytes[0];
int i1 = (bytes[1] & 0xFF) << 8 ;
int i2 = (bytes[2] & 0xFF) << 16 ;
int i3 = (bytes[3] & 0xFF) << 24 ;
return i0 | i1 | i2 | i3 ;
}
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.