/**
* @author YangQuanqing yqq 功能:将java中字节数据变成无符号数据在0——255范围内。
*
*/
public class ConvertToUnsigned {
private static short[] tempByteU = null;// 字节无符号型数据
/**
* 返回无符号数
* @param a有符号字节数组
* @return字节无符号型数据
*/
public static short[] toGetUnsignedByte(byte[] a) {
int len = a.length;
tempByteU = new short[len];
for (int i = 0; i < len; i++) {
// 如果数据小于0,就用short类型数据与之与运算,负数在内存中以补码存放
if (a[i] < 0) {
tempByteU[i] = (short) (a[i] & 0x00ff);
} else {// 大于0,不需要变
tempByteU[i] = a[i];
}
}
return tempByteU;
}
}
时间: 2024-10-25 05:34:11