336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
Object 에서 byte[]
ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutput out = new ObjectOutputStream(bos);
out.writeObject(yourObject);
byte[] yourBytes = bos.toByteArray();
byte[]에서 Object
ByteArrayIntputSream bis = new ByteArrayInputStream(yourBytes);
ObjectInput in = new ObjectInputStream(bis);
Object o = in.readObject();
'Programming > Java' 카테고리의 다른 글
[Java] 디자인 패턴 (1) | 2011.01.27 |
---|---|
[Java] multipart/form-data 타입을 이용한 파일 전송지원 클래스 작성 (3) | 2010.07.30 |
[Java] 프로젝트 Import와 Export 하기 (0) | 2010.07.26 |
[Java] JAVA 프로그래밍 관련 추천사이트 목록 (0) | 2010.07.24 |
[JAVA] 열거타입 ( enum ) (0) | 2010.07.24 |