안드로이드에서 Base64 인코딩 디코딩 하기
Base64 Encoding / Decoding in Android
안드로이드 OS는 이미 apache codec 1.3의 Base64를 가지고 있다.
Android OS already has the Base64 of apache codec 1.3.
public static byte[] encodeBase64(byte [] binaryData) {
byte [] buf = null;
try {
Class Base64 = Class.forName("org.apache.commons.codec.binary.Base64");
Class[] parameterTypes = new Class[] { byte[].class };
Method encodeBase64 = Base64.getMethod("encodeBase64", parameterTypes);
buf = (byte[])encodeBase64.invoke(Base64, binaryData);
} catch (Exception e) {
e.printStackTrace();
}
return buf;
}
public static byte[] decodeBase64(byte [] base64Data) {
byte [] buf = null;
try {
Class Base64 = Class.forName("org.apache.commons.codec.binary.Base64");
Class[] parameterTypes = new Class[] { byte[].class };
Method decodeBase64 = Base64.getMethod("decodeBase64", parameterTypes);
buf = (byte[])decodeBase64.invoke(Base64, base64Data);
} catch (Exception e) {
e.printStackTrace();
}
return buf;
}
안드로이드 android base64 encoding decoding apache codec
TRACKBACK http://www.virgo81.net/trackback/72
-
virgo81의 생각 삭제
2010/03/20 00:52TRACKBACK FROM virgo81's me2DAYBase64 Encoding / Decoding in Android 안드로이드에서 Base64 인코딩 디코딩 하기 Base64 Encoding / Decoding in Android 안드로이드 OS는 이미 apache codec 1.3의 Base64를 가지고 있다…
댓글을 달아 주세요
great post as usual!
2010/05/03 22:56 [ ADDR : EDIT/ DEL : REPLY ]황인환 ...자료 잘 봤다~
2010/05/11 20:36 [ ADDR : EDIT/ DEL : REPLY ]니도 안드로이드 하나보군
2010/05/11 20:37 [ ADDR : EDIT/ DEL : REPLY ]Men Supra Shoes would be definitely to make men on the Supra TK Society Shoes in ultra cool and appealing outlook. With qualified leather made Supra Shoes are also characterized with patches designs for the upper that make the shoes more stylish or men. Men can also get more relaxed feelings on wearing the shoes for walking. Why not also add some Supra Skytop Shoes to your closet?Birkenstock Sandals footbeds are made of cork and natural latex, and contoured in the shape of a healthy foot. These contours ensure proper weight distribution with raised arches to help support the foot’s natural shape and structure. The Birkenstock Arizona toe bar allows the toes to grip and flex, stimulating circulation, exercising the legs, and helping to maintain balance.
2012/05/03 11:03 [ ADDR : EDIT/ DEL : REPLY ]