/*
*截取Byte數(shù)組
* begin:從哪一位開始
* count:截取的個數(shù)
*/
- (void)bytesplit2byte:(Byte[])src orc:(Byte[])orc begin:(NSInteger)begin count:(NSInteger)count{
memset(orc,0,sizeof(char)*count);
for(NSIntegeri = begin; i < begin+count; i++){
orc[i-begin] = src[i];
}
}