Javaファイルのアーカイブと和解ファイルを実現します。


本論文の実例はJavaファイルアーカイブ和解ファイルの具体的なコードを共有します。参考にしてください。具体的な内容は以下の通りです。
ファイルのアーカイブ

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 ;
 }
}

以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。