- Grab all required certificates (root and any intermediate CA’s)
- Create a keystore with keytool and the BouncyCastle provider and import the certs
- Load the keystore in your android app and use it for the secured connections
- Don’t use the standard java.net.ssl.HttpsURLConnection for the secure connection. Use the Apache HttpClient (Version 4 atm) library, which is already built-in in android. It’s built on top of the java connection libraries and is, in my opinion, faster, better modularized and easier to understand.
대략 번역해보면
안드로이드sdk에서 keytool이라는 유틸리티로 keystore 파일을 만든후
그것을 res/raw 에다가 넣고 앱에서 쓰는 형식이군요.
자세한 내용은 아래 출처에 있습니다.
'android' 카테고리의 다른 글
안드로이드 쓰레드 정리 (3) | 2014.07.16 |
---|---|
믹사리 증강현실엔진에 데이타 넣기 (0) | 2010.12.24 |
java 의 스트링 인코딩이해( 자바 한글 깨짐해법을 위한연구) (0) | 2010.12.04 |
안드로이드 NDK R4 일리히트 연동하기 (6) | 2010.08.13 |
오드로이드 구매했습니다. (0) | 2010.03.27 |