펌 OK (출처 표시), 상업적 이용 NO, 컨텐츠 변경 NO
public static byte[] shortToByte(short a) {
byte[] shortToByte = new byte[2];
shortToByte[0] |= (byte)((a & 0xFF00) >>> 8);
shortToByte[1] |= (byte)(a & 0xFF & 0xff);
return shortToByte;
}
public static byte[] intToByte(int a) {
byte[] intToByte = new byte[4];
intToByte[0] |= (byte)((a&0xFF000000)>>24);
intToByte[1] |= (byte)((a&0xFF0000)>>16);
intToByte[2] |= (byte)((a&0xFF00)>>8);
intToByte[3] |= (byte)(a&0xFF);
return intToByte;
}
-끝-
'Android > 소스코드' 카테고리의 다른 글
바이트(byte)로 된 파일 또는 바이트 배열 수정하는방법에 대해 (0) | 2014.03.20 |
---|---|
리스트뷰 커스텀 (Custom ListView) 예제입니다. (0) | 2014.03.13 |
XmlPullParser 사용하기 (0) | 2014.02.20 |
단말의 x,y축(가로,세로) 길이 구하는 소스 (2) | 2014.01.06 |
httpPost방식으로 웹서버로 데이터 전송하기 (1) | 2013.08.30 |