java 根据特定数据结构 打自定义包_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java 根据特定数据结构 打自定义包

java 根据特定数据结构 打自定义包

 2012/1/5 14:00:04  jiuyuehe  http://jiuyuehe.iteye.com  我要评论(0)
  • 摘要:组长分配了一个任务,按照特定的数据结果打一个xxx.pkg的包,然后解压出来后不变~刚刚开始觉得蛮难的,感觉无从下手,认真分析了20分钟,有思路了!首先看特定的数据格式publicstaticvoidmessage(){//Stringpackage_header_signature="hello";//intfile_num=8;////for(inti=0;i<8;i++){//intfile_path_length="";intfile_size=""
  • 标签:数据结构 Java 数据 自定义
  组长分配了一个任务,按照特定的数据结果打一个 xxx.pkg的包,然后解压出来后不变~
刚刚开始觉得蛮难的,感觉无从下手,认真分析了20分钟,有思路了!
  首先看特定的数据格式
  
	public static void message(){
//		String  package_header_signature = "hello";

//		int  file_num=8;
//		
//		for(int i=0;i<8;i++){
//			int file_path_length="";
                        int file_size ="";
//			String file_path="";
			
//		}
//	只列了简单几个,原因都懂的!	

//		}
   

大概就是这样子,其实信息再多思路一样也没问题!下面是打包的方法!!
思路是将所有的信息全部转化为二进制存储!

public static void test(String src,String target) throws Exception{
		File file =new File(src);
		//String target = "g://test.pkg";
		File targetFile = new File(target);
		if(!targetFile.exists()){
			targetFile.createNewFile();
		}
		OutputStream os = new FileOutputStream(targetFile);
		
		//write some message
		String  package_header_signature = "hello";
		
		addByte(package_header_signature.getBytes(), os, 4);
		//文件个数
		int filesum=0;
		//文件路径
		List<String> strList = new ArrayList<String>();
		filesum =listFlieSum(file,strList);
		
		//加入文件个数
		addByte(intToByte(filesum,1),os, 1);
		
		for(int i=0;i<strList.size();i++){
			File fileInfo = new File(strList.get(i));
			String file_path = fileInfo.getAbsolutePath();
			int file_path_length = file_path.length();
			int file_size = getFileSize(fileInfo);
			//加入文件路径长度
			addByte(intToByte(file_path_length,1), os, 1);//文件路径的长度
			//加入文件大小
			addByte(intToByte(file_size,4), os, 4);//文件大小
			//加入文件路径
			addByte(file_path.getBytes(), os, file_path.length());//文件路径
		}
		listFile(file,os);
		
		String crc32 = getFileCRCCode(targetFile);
		byte[] crcbyte = crc32.getBytes();
		
		os.close();
		
		
	}


经常碰到的问题就是:bit byte byte[] int 之间的转化!
这里谢谢javaeye的一个网友。

/**
	 * int to byte[] 支持 1或者 4 个字节
	 * @param i
	 * @param len
	 * @return
	 */
	 public static byte[] intToByte(int i,int len) {
	        byte[] abyte=null;
	        if(len==1){
	        	abyte = new byte[len];
	        	abyte[0] = (byte) (0xff & i);
	        }else{
	        	abyte = new byte[len];
	        	abyte[0] = (byte) (0xff & i);
	        	abyte[1] = (byte) ((0xff00 & i) >> 8);
		        abyte[2] = (byte) ((0xff0000 & i) >> 16);
		        abyte[3] = (byte) ((0xff000000 & i) >> 24);
	        }
	        return abyte;
	    }
	   public  static int bytesToInt(byte[] bytes) {
		   int addr=0;
		   if(bytes.length==1){
	        addr = bytes[0] & 0xFF;
		   }else{
			   addr = bytes[0] & 0xFF;
			   addr |= ((bytes[1] << 8) & 0xFF00);
			   addr |= ((bytes[2] << 16) & 0xFF0000);
			   addr |= ((bytes[3] << 24) & 0xFF000000);
		   }
		   return addr;
	    }


/**
	 * 读取byte []
	 * @param b
	 * @param target
	 * @throws Exception
	 */
	public static void addByte(byte[] b,OutputStream os, int len) throws Exception{
		//	File targetpkg  = new File(target);
			byte[] by = new byte[len];
			if (b.length > len) {
				os.write(b, 0, len);
			} else {
				int l = len - (b.length-1);
				
				while (--l > 0) {
					os.write(0);
				}
				os.write(b, 0, b.length);
			}
		}


ok! 打包基本基本没问题了,解包才是关键。请看下一篇!
发表评论
用户名: 匿名